[button] Downgrade press logging from DEBUG to VERBOSE (#15408)

This commit is contained in:
J. Nick Koston
2026-04-05 13:26:21 -10:00
committed by GitHub
parent 83a4edbea1
commit 30d1230a17
+1 -1
View File
@@ -16,7 +16,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_LOGV(TAG, "'%s' Pressed.", this->get_name().c_str());
this->press_action();
this->press_callback_.call();
}