From 1ede7028a5a77431b3d75991be19e864ef024f0d Mon Sep 17 00:00:00 2001 From: proddy Date: Fri, 26 Dec 2025 12:06:31 +0100 Subject: [PATCH] add back missing webLogService.loop() --- src/core/emsesp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/emsesp.cpp b/src/core/emsesp.cpp index e7add50b0..0c5d030bd 100644 --- a/src/core/emsesp.cpp +++ b/src/core/emsesp.cpp @@ -1818,7 +1818,8 @@ void EMSESP::loop() { return; // LED flashing is active, skip the rest of the loop } - esp32React.loop(); // web services + esp32React.loop(); // web services like network, AP, MQTT + webLogService.loop(); // log in Web UI // run the loop, unless we're in the middle of an OTA upload if (EMSESP::system_.systemStatus() == SYSTEM_STATUS::SYSTEM_STATUS_NORMAL || EMSESP::system_.systemStatus() == SYSTEM_STATUS::SYSTEM_STATUS_INVALID_GPIO) {