From f40e4825c733a1c52db8773ce1128140d29614e5 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 14 Jan 2026 22:39:04 -1000 Subject: [PATCH] preen --- esphome/components/button/button.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/button/button.cpp b/esphome/components/button/button.cpp index a6843896e34..87a222776ea 100644 --- a/esphome/components/button/button.cpp +++ b/esphome/components/button/button.cpp @@ -19,7 +19,7 @@ void log_button(const char *tag, const char *prefix, const char *type, Button *o } void Button::press() { - ESP_LOGD(TAG, "'%s' >> Pressed", this->get_name().c_str()); + ESP_LOGD(TAG, "'%s' Pressed.", this->get_name().c_str()); this->press_action(); this->press_callback_.call(); }