From 5641d53cc30a974d7cbbee9442e6711afb34aa0d Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Thu, 29 Jan 2026 18:26:03 +0100 Subject: [PATCH] revert syslog buffer (still in heap) --- src/core/system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/system.cpp b/src/core/system.cpp index 82d52696b..d031a05f2 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -501,7 +501,7 @@ void System::syslog_init() { #ifndef EMSESP_STANDALONE if (syslog_enabled_) { // start & configure syslog - syslog_.maximum_log_messages(psram_ ? 250 : 10); + syslog_.maximum_log_messages(10); syslog_.log_level((uuid::log::Level)syslog_level_); syslog_.mark_interval(syslog_mark_interval_); syslog_.destination(syslog_host_.c_str(), syslog_port_);