1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-30 14:43:51 +00:00
This commit is contained in:
J. Nick Koston
2025-07-31 11:40:04 -10:00
parent 8729ba17a0
commit 27861d85fe

View File

@@ -293,11 +293,6 @@ void BluetoothConnection::send_service_for_discovery_() {
// Now we know we're keeping this service, add its size // Now we know we're keeping this service, add its size
current_size += service_size; current_size += service_size;
// Log the difference between estimate and actual size
ESP_LOGV(TAG, "[%d] [%s] Service %d actual: %d, estimated: %d, diff: %+d", this->connection_index_,
this->address_str().c_str(), this->send_service_, service_size, estimated_size,
(int) service_size - (int) estimated_size);
// Successfully added this service, increment counter // Successfully added this service, increment counter
this->send_service_++; this->send_service_++;
} }