From edfdfb101636ac54bb8c704c4640b84ea55246f7 Mon Sep 17 00:00:00 2001 From: proddy Date: Mon, 10 Nov 2025 21:27:50 +0100 Subject: [PATCH] fix standalone --- src/core/emsesp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/emsesp.cpp b/src/core/emsesp.cpp index 361ba34ea..7c2e47840 100644 --- a/src/core/emsesp.cpp +++ b/src/core/emsesp.cpp @@ -1714,9 +1714,11 @@ void EMSESP::start() { // loads core system services settings (network, mqtt, ap, ntp etc) esp32React.begin(); +#ifndef EMSESP_STANDALONE if (!root) { LOG_WARNING("No settings found on filesystem. Using factory settings."); } +#endif #ifndef EMSESP_STANDALONE LOG_INFO("EMS-ESP version %s", EMSESP_APP_VERSION);