Fix trace log to print section.key

reverse-scroll
nirenjan 2021-07-23 14:23:11 -07:00
parent 0fa638fa16
commit 88955418b8
1 changed files with 1 additions and 1 deletions

View File

@ -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"
}