From d5b68d69d33ff24f813a15196bc0d59ffe9abca4 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 26 Jun 2025 10:14:05 +0200 Subject: [PATCH] tweak --- esphome/components/api/api_connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/api/api_connection.cpp b/esphome/components/api/api_connection.cpp index cda50bbc71..5610ad2237 100644 --- a/esphome/components/api/api_connection.cpp +++ b/esphome/components/api/api_connection.cpp @@ -165,7 +165,7 @@ void APIConnection::loop() { if (!this->sent_ping_) { // If we can't send the ping request directly (tx_buffer full), // schedule it at the front of the batch so it will be sent with priority - ESP_LOGVV(TAG, "Failed to send ping directly, scheduling at front of batch"); + ESP_LOGW(TAG, "Buffer full, ping queued"); this->schedule_message_front_(nullptr, &APIConnection::try_send_ping_request, PingRequest::MESSAGE_TYPE); this->sent_ping_ = true; // Mark as sent to avoid scheduling multiple pings }