From dc8c322b4249cf211334d98c218790c6e7ea4fd2 Mon Sep 17 00:00:00 2001 From: proddy Date: Tue, 27 Jul 2021 21:43:36 +0200 Subject: [PATCH] auto-formatting --- src/system.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/system.cpp b/src/system.cpp index f19582ea5..e8de1b3af 100644 --- a/src/system.cpp +++ b/src/system.cpp @@ -747,17 +747,17 @@ void System::show_system(uuid::console::Shell & shell) { if (!syslog_enabled_) { shell.printfln(F("Syslog: disabled")); } else { - shell.printfln(F("Syslog: %s"),syslog_.started() ? "started" : "stopped"); + shell.printfln(F("Syslog: %s"), syslog_.started() ? "started" : "stopped"); shell.print(F(" ")); shell.printfln(F_(host_fmt), !syslog_host_.isEmpty() ? syslog_host_.c_str() : uuid::read_flash_string(F_(unset)).c_str()); - shell.printfln(F(" IP: %s"),uuid::printable_to_string(syslog_.ip()).c_str()); + shell.printfln(F(" IP: %s"), uuid::printable_to_string(syslog_.ip()).c_str()); shell.print(F(" ")); shell.printfln(F_(port_fmt), syslog_port_); shell.print(F(" ")); shell.printfln(F_(log_level_fmt), uuid::log::format_level_lowercase(static_cast(syslog_level_))); shell.print(F(" ")); shell.printfln(F_(mark_interval_fmt), syslog_mark_interval_); - shell.printfln(F(" Queued: %d"),syslog_.queued()); + shell.printfln(F(" Queued: %d"), syslog_.queued()); } #endif