[logger] Move task log buffer storage to BSS (#15153)

This commit is contained in:
J. Nick Koston
2026-03-24 14:52:37 -10:00
committed by GitHub
parent 26e78c840c
commit 690dc324c9
15 changed files with 69 additions and 127 deletions

View File

@@ -26,7 +26,7 @@ void setup() {
// Log functions call global_logger->log_vprintf_() without a null check,
// so we must set up a Logger before any test that triggers logging.
static esphome::logger::Logger test_logger(0, 64);
static esphome::logger::Logger test_logger(0);
test_logger.set_log_level(ESPHOME_LOG_LEVEL);
test_logger.pre_setup();