From 7e77e40bdae3d0f5e01143774cfa80cf31a5028e Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 30 Jun 2025 14:37:30 -0500 Subject: [PATCH] cleanup --- esphome/components/esp32_touch/esp32_touch_v2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/esp32_touch/esp32_touch_v2.cpp b/esphome/components/esp32_touch/esp32_touch_v2.cpp index 6db4da1768..ad77881724 100644 --- a/esphome/components/esp32_touch/esp32_touch_v2.cpp +++ b/esphome/components/esp32_touch/esp32_touch_v2.cpp @@ -331,8 +331,8 @@ void ESP32TouchComponent::loop() { if (still_touched) { // Still touched! Timer was reset in update_touch_state_ - ESP_LOGD(TAG, "Touch Pad '%s' still touched after %" PRIu32 "ms timeout, resetting timer", - child->get_name().c_str(), this->release_timeout_ms_); + ESP_LOGVV(TAG, "Touch Pad '%s' still touched after %" PRIu32 "ms timeout, resetting timer", + child->get_name().c_str(), this->release_timeout_ms_); } else { // Actually released - already handled by check_and_update_touch_state_ pads_off++;