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

@@ -406,7 +406,7 @@ void System::show_system(uuid::console::Shell & shell) {
shell.print(" ");
shell.printfln(F_(host_fmt), !settings.syslog_host.isEmpty() ? settings.syslog_host.c_str() : uuid::read_flash_string(F_(unset)).c_str());
shell.print(" ");
shell.printfln(F_(log_level_fmt), uuid::log::format_level_uppercase(static_cast<uuid::log::Level>(settings.syslog_level)));
shell.printfln(F_(log_level_fmt), uuid::log::format_level_lowercase(static_cast<uuid::log::Level>(settings.syslog_level)));
shell.print(" ");
shell.printfln(F_(mark_interval_fmt), settings.syslog_mark_interval);
});