From 20a60c119a0108df6dcb79d7625eac76e4ac869f Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 29 Mar 2026 16:07:34 -1000 Subject: [PATCH] merge --- esphome/components/logger/logger.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/esphome/components/logger/logger.cpp b/esphome/components/logger/logger.cpp index 237a4804aa6..23b69c36c60 100644 --- a/esphome/components/logger/logger.cpp +++ b/esphome/components/logger/logger.cpp @@ -248,12 +248,11 @@ void Logger::dump_config() { // Only the compiled log level matters — all log calls up to this level // are in the binary and will be formatted (vsnprintf) and block UART. #if ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERY_VERBOSE - ESP_LOGW(TAG, "VERY_VERBOSE logging is active. This will significantly impact device performance and may cause " - "connection instability. This level is intended for short-term debugging only. " - "Set the log level to DEBUG or lower for long-term use."); + ESP_LOGW(TAG, "VERY_VERBOSE logging is active — significant performance impact, short-term debugging only\n" + " May cause connection instability. Set log level to DEBUG or lower for long-term use."); #elif ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERBOSE - ESP_LOGI(TAG, "VERBOSE logging is active. This will impact device performance and is intended for short-term " - "debugging only. Set the log level to DEBUG or lower for long-term use."); + ESP_LOGI(TAG, "VERBOSE logging is active — performance impact, short-term debugging only\n" + " Set log level to DEBUG or lower for long-term use."); #endif }