From: Jacob Bachmeyer Date: Wed, 24 Mar 2021 21:56:11 +0000 (-0500) Subject: Demote severity of debugging message and indicate message type X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=5569947d73cac79aae4776428c42b461ade976d1;p=gatekeeper.git 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. --- 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);