From a3b564f4f3562ac81d4af192f4ab0285d70e5f13 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Mon, 24 Mar 2025 12:16:35 +0100 Subject: [PATCH] Keep telnet output while serial logging was disabled --- tasmota/tasmota_support/support.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/tasmota_support/support.ino b/tasmota/tasmota_support/support.ino index 1e9195600..b011545d0 100755 --- a/tasmota/tasmota_support/support.ino +++ b/tasmota/tasmota_support/support.ino @@ -2608,7 +2608,7 @@ bool GetLog(uint32_t req_loglevel, uint32_t* index_p, char** entry_pp, size_t* l } uint32_t HighestLogLevel(void) { - uint32_t highest_loglevel = TasmotaGlobal.seriallog_level; + uint32_t highest_loglevel = Settings->seriallog_level; if (Settings->mqttlog_level > highest_loglevel) { highest_loglevel = Settings->mqttlog_level; } #ifdef USE_WEBSERVER if (Settings->weblog_level > highest_loglevel) { highest_loglevel = Settings->weblog_level; }