From ce30346ac3245256452f99b00620ed7f20c427eb Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 26 Jul 2020 16:04:17 +0200 Subject: [PATCH] prevent forcing DEBUG logging on an ESP32 --- src/console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console.cpp b/src/console.cpp index fe7020ff1..e5cf869de 100644 --- a/src/console.cpp +++ b/src/console.cpp @@ -516,7 +516,7 @@ void Console::start() { shell = std::make_shared(serial_console_, true); shell->maximum_log_messages(100); // default is 50 shell->start(); - shell->log_level(uuid::log::Level::DEBUG); // order is: err, warning, notice, info, debug, trace, all + // shell->log_level(uuid::log::Level::DEBUG); // order is: err, warning, notice, info, debug, trace, all #endif #if defined(EMSESP_STANDALONE)