From 4677ccee86e45b86dfce4fe2fecacfa7cce1cc58 Mon Sep 17 00:00:00 2001 From: Roman Leonov Date: Thu, 10 Oct 2024 11:29:45 +0200 Subject: [PATCH] fix(ext_port): ESP_LOGW() -> ESP_LOGD() changed back --- components/usb/ext_port.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/usb/ext_port.c b/components/usb/ext_port.c index d8de5b58f7..efce9ed7de 100644 --- a/components/usb/ext_port.c +++ b/components/usb/ext_port.c @@ -560,7 +560,7 @@ static bool handle_port_status(ext_port_t *ext_port) { bool need_processing = false; if (port_is_in_reset(ext_port)) { - ESP_LOGW(EXT_PORT_TAG, "[%d:%d] Port still in reset, wait and repeat get status...", + ESP_LOGD(EXT_PORT_TAG, "[%d:%d] Port still in reset, wait and repeat get status...", ext_port->constant.parent_dev_addr, ext_port->constant.port_num); port_request_status(ext_port);