From 84cef67b824e2286626202535e072f210c599f2e Mon Sep 17 00:00:00 2001 From: Jason P Date: Fri, 10 Oct 2025 09:34:43 -0500 Subject: [PATCH] Fix builds for HELTEC_MESH_SOLAR --- src/MessageStore.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/MessageStore.h b/src/MessageStore.h index 4c1c2c8f8..06eb62139 100644 --- a/src/MessageStore.h +++ b/src/MessageStore.h @@ -2,6 +2,11 @@ #if HAS_SCREEN +// Disable debug logging entirely on release builds of HELTEC_MESH_SOLAR for space constraints +#if defined(HELTEC_MESH_SOLAR) +#define LOG_DEBUG(...) +#endif + // Disable message persistence to flash if you’re short on space #ifndef ENABLE_MESSAGE_PERSISTENCE #define ENABLE_MESSAGE_PERSISTENCE 1