From b6ee5d7da8e822fb4315f4c48c27eb77fc0d1d7c Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 19 Feb 2025 20:53:08 +0100 Subject: [PATCH] fix: remove unnecessary logging for unused timer slots in restore_timers_ method of DynamicLampComponent --- esphome/components/dynamic_lamp/dynamic_lamp.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/esphome/components/dynamic_lamp/dynamic_lamp.cpp b/esphome/components/dynamic_lamp/dynamic_lamp.cpp index b93068dec1..e3006aa422 100644 --- a/esphome/components/dynamic_lamp/dynamic_lamp.cpp +++ b/esphome/components/dynamic_lamp/dynamic_lamp.cpp @@ -422,7 +422,6 @@ void DynamicLampComponent::restore_timers_() { } else { this->timers_[i] = DynamicLampTimer(); this->timers_[i].in_use = false; - //ESP_LOGVV(TAG, "Timer save slot %" PRIu8 " did not contain valid record, initializing unused empty timer slot", i); } } break;