From 752b0fc32081c719fcb2ce1cbe7380edd5d7547e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Wed, 23 Jun 2021 18:17:40 +0100 Subject: [PATCH] Debug: Lower priority to "noisy" for pipe spawn output Spawn output can include very long multiline extcap arguments. --- wsutil/ws_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wsutil/ws_pipe.c b/wsutil/ws_pipe.c index 500859e2a4..7e5a6d601c 100644 --- a/wsutil/ws_pipe.c +++ b/wsutil/ws_pipe.c @@ -492,7 +492,7 @@ gboolean ws_pipe_spawn_sync(const gchar *working_directory, const gchar *command if (status) { if (local_output != NULL) { - ws_debug("spawn output: %s", local_output); + ws_noisy("spawn output: %s", local_output); if (command_output != NULL) *command_output = g_strdup(local_output); }