[api] Move the generic buffer-full log to very verbose (#18300)

This commit is contained in:
J. Nick Koston
2026-08-12 04:04:07 +00:00
committed by GitHub
parent 08c6585915
commit 8d87ba34d9
+4 -1
View File
@@ -2177,7 +2177,10 @@ bool APIConnection::try_to_clear_buffer_slow_(bool log_out_of_space) {
if (this->helper_->can_write_without_blocking())
return true;
if (log_out_of_space) {
ESP_LOGV(TAG, "Cannot send message because of TCP buffer space");
// VV: refusals are either reported by the sending call site (naming what
// was lost) or retried without loss (the deferred batch), so this generic
// line only duplicates them.
ESP_LOGVV(TAG, "Cannot send message because of TCP buffer space");
}
return false;
}