This is an automated email from Gerrit. "Antonio Borneo <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9428
-- gerrit commit 2a04d8e3518060c6180369a0874c22042d6248ad Author: Antonio Borneo <[email protected]> Date: Sun Feb 1 18:53:18 2026 +0100 transport: don't warning when a transport is selected twice Selecting the same transport is not an issue. Move the warning message to debug level. Change-Id: I52a7fffeb08a5aa6ee8a72af6b740f7e0fbe5b27 Signed-off-by: Antonio Borneo <[email protected]> diff --git a/src/transport/transport.c b/src/transport/transport.c index 5323a7ca0a..bb7df408ca 100644 --- a/src/transport/transport.c +++ b/src/transport/transport.c @@ -352,7 +352,7 @@ COMMAND_HANDLER(handle_transport_select) transport_single_is_autoselected = false; return ERROR_OK; } - LOG_WARNING("Transport \"%s\" was already selected", CMD_ARGV[0]); + LOG_DEBUG("Transport \"%s\" was already selected", CMD_ARGV[0]); return ERROR_OK; } command_print(CMD, "Can't change session's transport after the initial selection was made"); --
