From 73ce3d4ef649f14747879f5a78137bc5a57e1e8a Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 28 Sep 2025 18:44:08 -0500 Subject: [PATCH] reduce flash usag --- esphome/components/usb_host/usb_host_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/usb_host/usb_host_client.cpp b/esphome/components/usb_host/usb_host_client.cpp index f37bf3ec64..a5dd1457ba 100644 --- a/esphome/components/usb_host/usb_host_client.cpp +++ b/esphome/components/usb_host/usb_host_client.cpp @@ -387,7 +387,7 @@ TransferRequest *USBClient::get_trq_() { mask = expected; } - ESP_LOGE(TAG, "Too many requests queued (all %d slots in use)", MAX_REQUESTS); + ESP_LOGE(TAG, "All %d transfer slots in use", MAX_REQUESTS); return nullptr; } void USBClient::disconnect() {