From 88955418b85192973dfa107e97e3d9c338a0bdc8 Mon Sep 17 00:00:00 2001 From: nirenjan Date: Fri, 23 Jul 2021 14:23:11 -0700 Subject: [PATCH] Fix trace log to print section.key --- daemon/x52d_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/x52d_config.c b/daemon/x52d_config.c index 72c4758..bc412cb 100644 --- a/daemon/x52d_config.c +++ b/daemon/x52d_config.c @@ -63,7 +63,7 @@ void x52d_cfg_set_Profiles_ClutchLatched(bool param) { (void)param; } void x52d_config_apply(void) { #define CFG(section, key, name, parser, def) \ - PINELOG_TRACE("Calling configuration callback for " #section "." #name); \ + PINELOG_TRACE("Calling configuration callback for " #section "." #key); \ x52d_cfg_set_ ## section ## _ ## key(x52d_config . name); #include "x52d_config.def" }