From: <ge...@op...> - 2025-07-11 09:00:54
|
This is an automated email from Gerrit. "zapb <de...@za...>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8994 -- gerrit commit 3753f3787f9566c1dad00fe84c2aaa8fa11b27eb Author: Marc Schink <de...@za...> Date: Fri Jul 11 10:36:16 2025 +0200 adapter/stlink: Hide '(re)connect' message Print a debug message rather than an info message because this information is not of importance for normal users. While at it, fix the 'EMBEDDED_FUNCTION_NAME' checkpatch issue. Change-Id: I9d458a6dd6818fdedc488e39d2daa6d72a21b743 Signed-off-by: Marc Schink <de...@za...> diff --git a/src/jtag/drivers/stlink_usb.c b/src/jtag/drivers/stlink_usb.c index 5ee1f85261..70a73eeb95 100644 --- a/src/jtag/drivers/stlink_usb.c +++ b/src/jtag/drivers/stlink_usb.c @@ -4194,7 +4194,7 @@ static int stlink_dap_op_connect(struct adiv5_dap *dap) uint32_t idcode; int retval; - LOG_INFO("stlink_dap_op_connect(%sconnect)", dap->do_reconnect ? "re" : ""); + LOG_DEBUG("%s(%sconnect)", __func__, dap->do_reconnect ? "re" : ""); /* Check if we should reset srst already when connecting, but not if reconnecting. */ if (!dap->do_reconnect) { -- |