Skip to content

Commit

Permalink
fix(example/system/console): Add 'info' to log_level command description
Browse files Browse the repository at this point in the history
  • Loading branch information
DCSBL authored Oct 23, 2024
1 parent a97a7b0 commit c0d1b81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ static int log_level(int argc, char **argv)
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.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);

const esp_console_cmd_t cmd = {
Expand Down

0 comments on commit c0d1b81

Please sign in to comment.