From 431766d898972418b005c47f7f2b1a4e9dc565dc Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 24 Jul 2025 21:08:57 -1000 Subject: [PATCH] preen --- esphome/core/component.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/esphome/core/component.cpp b/esphome/core/component.cpp index 7ba6d2ef65..90087e23ab 100644 --- a/esphome/core/component.cpp +++ b/esphome/core/component.cpp @@ -152,8 +152,10 @@ void Component::call() { case COMPONENT_STATE_CONSTRUCTION: { // State Construction: Call setup and set state to setup this->set_component_state_(COMPONENT_STATE_SETUP); +#if ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERBOSE + ESP_LOGV(TAG, "Setup %s", this->get_component_source()); +#endif #if ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_DEBUG - ESP_LOGD(TAG, "Setup %s", this->get_component_source()); uint32_t start_time = millis(); #endif this->call_setup();