From 6f5ef30293c3a31d86e2ba6bec7ae0d8ef9cafc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Sat, 5 Sep 2020 03:49:32 +0200 Subject: [PATCH] Move "connecting..." messages to the debug mode So that the --verbose option does only one thing. --- json-rpc-shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json-rpc-shell.c b/json-rpc-shell.c index 8f1e147..dcd0a5e 100644 --- a/json-rpc-shell.c +++ b/json-rpc-shell.c @@ -1683,7 +1683,7 @@ backend_ws_establish_connection (struct ws_context *self, else real_host = buf; - if (self->ctx->verbose) + if (g_debug_mode) { char *address = format_host_port_pair (real_host, port); print_status ("connecting to %s...", address);