This is an automated email from Gerrit. "zapb <d...@zapb.de>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8986
-- gerrit commit 29a24a52cb16f35422bce44b6f6ec0b1f331b798 Author: Marc Schink <d...@zapb.de> Date: Tue Jul 8 07:57:27 2025 +0000 adapter/xds110: Hide '(dis)connected' message Print a debug message rather than an info message because this information is not of importance for normal users. Change-Id: Ie91565df455ffc0bfe976d1782dd4318bfd2d30b Signed-off-by: Marc Schink <d...@zapb.de> diff --git a/src/jtag/drivers/xds110.c b/src/jtag/drivers/xds110.c index d1bb705908..6b3ca5cfb6 100644 --- a/src/jtag/drivers/xds110.c +++ b/src/jtag/drivers/xds110.c @@ -428,7 +428,7 @@ static bool usb_connect(void) /* Log the results */ if (result == 0) - LOG_INFO("XDS110: connected"); + LOG_DEBUG("XDS110: connected"); else LOG_ERROR("XDS110: failed to connect"); @@ -448,7 +448,7 @@ static void usb_disconnect(void) xds110.ctx = NULL; } - LOG_INFO("XDS110: disconnected"); + LOG_DEBUG("XDS110: disconnected"); } static bool usb_read(unsigned char *buffer, int size, int *bytes_read, --