Demote severity of debugging message and indicate message type
authorJacob Bachmeyer <jcb@gnu.org>
Wed, 24 Mar 2021 21:56:11 +0000 (16:56 -0500)
committerJacob Bachmeyer <jcb@gnu.org>
Wed, 24 Mar 2021 21:56:11 +0000 (16:56 -0500)
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

index 6c95c0d46ba5ea71cb99c145068996f10a96e72f..7a3f12225a55614a5d7f6ad8fab38007602d5a1d 100755 (executable)
@@ -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);