Send INFO messages to STDERR rather than STDOUT

This commit is contained in:
Tom Eastep 2016-04-18 13:59:29 -07:00
parent 3253c882e9
commit 0faf3b6db1

View File

@ -1274,10 +1274,10 @@ sub info_message
}
if ( $confess ) {
print longmess( " INFO: @_$currentlineinfo" );
print STDERR longmess( " INFO: @_$currentlineinfo" );
print $log longmess( " INFO: @_$currentlineinfo\n" ) if $log;
} else {
print " INFO: @_$currentlineinfo\n";
print STDERR " INFO: @_$currentlineinfo\n";
print $log " INFO: @_$currentlineinfo\n" if $log;
}