File tree 3 files changed +5
-10
lines changed
3 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ buildconfig_header("chip_buildconfig") {
48
48
" CHIP_AUTOMATION_LOGGING=${ chip_automation_logging } " ,
49
49
" CHIP_PW_TOKENIZER_LOGGING=${ chip_pw_tokenizer_logging } " ,
50
50
" CHIP_USE_PW_LOGGING=${ chip_use_pw_logging } " ,
51
+ " CHIP_EXCHANGE_NODE_ID_LOGGING=${ chip_exchange_node_id_logging } " ,
51
52
" CHIP_CONFIG_SHORT_ERROR_STR=${ chip_config_short_error_str } " ,
52
53
" CHIP_CONFIG_ENABLE_ARG_PARSER=${ chip_config_enable_arg_parser } " ,
53
54
" CHIP_TARGET_STYLE_UNIX=${ chip_target_style_unix } " ,
Original file line number Diff line number Diff line change 461
461
#define CHIP_CONFIG_ENABLE_CONDITION_LOGGING 0
462
462
#endif // CHIP_CONFIG_ENABLE_CONDITION_LOGGING
463
463
464
- /**
465
- * @def CHIP_EXCHANGE_NODE_ID_LOGGING
466
- *
467
- * @brief
468
- * If asserted (1), enable logging of node IDs in exchange context.
469
- */
470
- #ifndef CHIP_EXCHANGE_NODE_ID_LOGGING
471
- #define CHIP_EXCHANGE_NODE_ID_LOGGING 0
472
- #endif // CHIP_EXCHANGE_NODE_ID_LOGGING
473
-
474
464
/**
475
465
* @def CHIP_CONFIG_TEST
476
466
*
Original file line number Diff line number Diff line change @@ -47,6 +47,10 @@ declare_args() {
47
47
# Configure chip logging to output through pigweed logging.
48
48
chip_use_pw_logging = false
49
49
50
+ # Enable logging of node Id in exchange context log messages.
51
+ # Will cause increase in code size and is therefore disabled by default.
52
+ chip_exchange_node_id_logging = false
53
+
50
54
# Configure chip logging to output through external logging implementation.
51
55
# External code will need to provide implementation for CHIP log output
52
56
# function (LogV), which is defined in "src/platform/logging/LogV.h".
You can’t perform that action at this time.
0 commit comments