mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
components/log: set default runtime log level to ESP_LOG_VERBOSE
With this change, it is possible to use LOG_LOCAL_LEVEL to raise debug level for given file/component
This commit is contained in:
parent
3cdefd9923
commit
26bf85bad6
@ -79,7 +79,7 @@ typedef struct uncached_tag_entry_{
|
||||
char tag[0]; // beginning of a zero-terminated string
|
||||
} uncached_tag_entry_t;
|
||||
|
||||
static esp_log_level_t s_log_default_level = (esp_log_level_t) CONFIG_LOG_DEFAULT_LEVEL;
|
||||
static esp_log_level_t s_log_default_level = ESP_LOG_VERBOSE;
|
||||
static uncached_tag_entry_t* s_log_tags_head = NULL;
|
||||
static uncached_tag_entry_t* s_log_tags_tail = NULL;
|
||||
static cached_tag_entry_t s_log_cache[TAG_CACHE_SIZE];
|
||||
|
Loading…
Reference in New Issue
Block a user