log levels always lowercase

This commit is contained in:
proddy
2020-08-14 12:09:51 +02:00
parent cab8037ff8
commit 8ad51b7377
3 changed files with 3 additions and 3 deletions

View File

@@ -333,7 +333,7 @@ void Console::load_standard_commands(unsigned int context) {
}
shell.println();
}
shell.printfln(F_(log_level_fmt), uuid::log::format_level_uppercase(shell.log_level()));
shell.printfln(F_(log_level_fmt), uuid::log::format_level_lowercase(shell.log_level()));
},
[](Shell & shell __attribute__((unused)), const std::vector<std::string> & arguments __attribute__((unused))) -> std::vector<std::string> {
return uuid::log::levels_lowercase();