Merge branch 'contrib/github_pr_14771' into 'master'

fix(example/system/console): Add 'info' to log_level command description (GitHub PR)

Closes IDFGH-13933

See merge request espressif/esp-idf!34413
This commit is contained in:
Omar Chebib
2024-11-11 10:56:56 +08:00

View File

@@ -266,7 +266,7 @@ static int log_level(int argc, char **argv)
static void register_log_level(void) static void register_log_level(void)
{ {
log_level_args.tag = arg_str1(NULL, NULL, "<tag|*>", "Log tag to set the level for, or * to set for all tags"); log_level_args.tag = arg_str1(NULL, NULL, "<tag|*>", "Log tag to set the level for, or * to set for all tags");
log_level_args.level = arg_str1(NULL, NULL, "<none|error|warn|debug|verbose>", "Log level to set. Abbreviated words are accepted."); log_level_args.level = arg_str1(NULL, NULL, "<none|error|warn|info|debug|verbose>", "Log level to set. Abbreviated words are accepted.");
log_level_args.end = arg_end(2); log_level_args.end = arg_end(2);
const esp_console_cmd_t cmd = { const esp_console_cmd_t cmd = {