From 142fb85ff0907589dd67e4e8be263e00f99caf35 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 14 Jan 2026 22:32:12 -1000 Subject: [PATCH] more --- esphome/components/button/button.cpp | 2 +- esphome/components/event/event.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/button/button.cpp b/esphome/components/button/button.cpp index 87a222776e..a6843896e3 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(); } diff --git a/esphome/components/event/event.cpp b/esphome/components/event/event.cpp index 4c74a11388..8015f2255a 100644 --- a/esphome/components/event/event.cpp +++ b/esphome/components/event/event.cpp @@ -22,7 +22,7 @@ void Event::trigger(const std::string &event_type) { return; } this->last_event_type_ = found; - ESP_LOGD(TAG, "'%s' Triggered event '%s'", this->get_name().c_str(), this->last_event_type_); + ESP_LOGD(TAG, "'%s' >> '%s'", this->get_name().c_str(), this->last_event_type_); this->event_callback_.call(event_type); #if defined(USE_EVENT) && defined(USE_CONTROLLER_REGISTRY) ControllerRegistry::notify_event(this);