From 5569947d73cac79aae4776428c42b461ade976d1 Mon Sep 17 00:00:00 2001 From: Jacob Bachmeyer Date: Wed, 24 Mar 2021 16:56:11 -0500 Subject: [PATCH] Demote severity of debugging message and indicate message type This change enables the testsuite to reliably recognize this message instead of guessing with heuristics. The message severity was demoted to 'debug' because the message is only emitted in debugging mode. --- upload-ftp-v1.2.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/upload-ftp-v1.2.pl b/upload-ftp-v1.2.pl index 6c95c0d..7a3f122 100755 --- a/upload-ftp-v1.2.pl +++ b/upload-ftp-v1.2.pl @@ -1060,7 +1060,8 @@ sub verify_keyring { ($verify_str) = $verify_str =~ /^(.*)$/; - ftp_syslog('info',"$verify_str\n") if ($DEBUG > 0); + ftp_syslog('debug',"($log_style) DEBUG: gpgv command line: $verify_str\n") + if ($DEBUG > 0); my $retval = ''; open (GPGV, "$verify_str|") or &fatal("failed to run command: $verify_str",1); -- 2.25.1