From 3b8c973f2af9bf9027573746a906b397e1d3f4af Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Thu, 24 Apr 2025 10:23:34 +0200 Subject: [PATCH] fix debug message in console help --- src/core/console.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/console.cpp b/src/core/console.cpp index 87a262730..ce34b6d83 100644 --- a/src/core/console.cpp +++ b/src/core/console.cpp @@ -670,9 +670,9 @@ void EMSESPShell::end_of_transmission() { void EMSESPShell::main_help_function(Shell & shell, const std::vector & arguments) { shell.println(); #if defined(EMSESP_DEBUG) - shell.printfln("%s%sEMS-ESP version %s%s", COLOR_BRIGHT_GREEN, COLOR_BOLD_ON, EMSESP_APP_VERSION, COLOR_RESET); -#else shell.printfln("%s%sEMS-ESP version %s%s (DEBUG)", COLOR_BRIGHT_GREEN, COLOR_BOLD_ON, EMSESP_APP_VERSION, COLOR_RESET); +#else + shell.printfln("%s%sEMS-ESP version %s%s", COLOR_BRIGHT_GREEN, COLOR_BOLD_ON, EMSESP_APP_VERSION, COLOR_RESET); #endif shell.println(); shell.print_all_available_commands();