This is an automated email from Gerrit. "Marc Schink <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9387
-- gerrit commit 37e2fb7c70ae8a75a426de50275c1b6c15d9332d Author: Marc Schink <[email protected]> Date: Thu Jan 15 08:35:42 2026 +0000 adapter/jlink: Use new log level for adapter I/O Use the new adapter I/O log level to more easily distinguish adapter I/O messages from other debug messages. Change-Id: Ib3aa2bf84871c038aef937452cfeb28de232d821 Signed-off-by: Marc Schink <[email protected]> diff --git a/src/jtag/drivers/jlink.c b/src/jtag/drivers/jlink.c index 46afa862db..1901e8df14 100644 --- a/src/jtag/drivers/jlink.c +++ b/src/jtag/drivers/jlink.c @@ -504,7 +504,7 @@ static int jaylink_log_handler(const struct jaylink_context *ctx, tmp = LOG_LVL_DEBUG; break; case JAYLINK_LOG_LEVEL_DEBUG_IO: - tmp = LOG_LVL_DEBUG_IO; + tmp = LOG_LVL_DEBUG_USB; break; default: tmp = LOG_LVL_WARNING; --
