Code: Select all
#
# Log output
#
CONFIG_LOG_DEFAULT_LEVEL_NONE=
CONFIG_LOG_DEFAULT_LEVEL_ERROR=
CONFIG_LOG_DEFAULT_LEVEL_WARN=y
CONFIG_LOG_DEFAULT_LEVEL_INFO=
CONFIG_LOG_DEFAULT_LEVEL_DEBUG=
CONFIG_LOG_DEFAULT_LEVEL_VERBOSE=
CONFIG_LOG_DEFAULT_LEVEL=2
CONFIG_LOG_COLORS=y
Code: Select all
I (233) wifi: wifi firmware version: ebd3e5d
I (233) wifi: config NVS flash: enabled
I (233) wifi: config nano formating: disabled
I (263) wifi: Init dynamic tx buffer num: 32
I (263) wifi: Init data frame dynamic rx buffer num: 32
I (263) wifi: Init management frame dynamic rx buffer num: 32
I (263) wifi: Init static tx buffer num: 16
I (263) wifi: wifi driver task: 3ffd59ac, prio:23, stack:4096
I (273) wifi: Init static rx buffer num: 10
I (273) wifi: Init dynamic rx buffer num: 32
I (283) wifi: wifi power manager task: 0x3ffd5b20 prio: 21 stack: 2560
If I put the following in my code then those prints are suppressed.
esp_log_level_set("*", ESP_LOG_NONE);
The logical explanation is that someone else's code is calling esp_log_level_set with different parameters, but I haven't nailed that down yet. Just wondering if logging works as expected for everyone else. I get used to seeing those log messages and it's only that I'm trying to eliminate then that I noticed this issue.
John A