diff --git a/esphome/components/api/api_connection.cpp b/esphome/components/api/api_connection.cpp index 454c4dabc6..5eb9d64dad 100644 --- a/esphome/components/api/api_connection.cpp +++ b/esphome/components/api/api_connection.cpp @@ -1769,8 +1769,6 @@ void APIConnection::process_batch_() { return; } - ESP_LOGD(TAG, "Processing batch with %zu items", num_items); - // Pre-allocate storage for packet info std::vector> packet_info; packet_info.reserve(num_items); @@ -1826,8 +1824,6 @@ void APIConnection::process_batch_() { this->proto_write_buffer_.resize(this->proto_write_buffer_.size() + footer_size); } - ESP_LOGD(TAG, "Sending batch: %zu messages, %zu total bytes", items_processed, this->proto_write_buffer_.size()); - // Send all collected packets APIError err = this->helper_->write_protobuf_packets(ProtoWriteBuffer{&this->proto_write_buffer_}, packet_info); if (err != APIError::OK && err != APIError::WOULD_BLOCK) {