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; }