https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6329
Daniel <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Daniel <[email protected]> 2010-02-10 07:56:38 UTC --- Can be solved like this.... diff -u -r Mail-SpamAssassin-3.3.0-orig\lib\Mail\SpamAssassin\Logger\Stderr.pm Mail-SpamAssassin-3.3.0\lib\Mail\SpamAssassin\Logger\Stderr.pm --- Mail-SpamAssassin-3.3.0-orig\lib\Mail\SpamAssassin\Logger\Stderr.pm Thu Jan 21 12:14:52 2010 +++ Mail-SpamAssassin-3.3.0\lib\Mail\SpamAssassin\Logger\Stderr.pm Tue Feb 09 11:52:02 2010 @@ -54,8 +54,9 @@ my ($self, $level, $msg) = @_; my $now = Time::HiRes::time; + printf STDERR ("%s:%06.3f [%d] %s: %s\n", - POSIX::strftime("%b %e %H:%M",localtime($now)), $now-int($now/60)*60, + POSIX::strftime("%c",localtime($now)), $now-int($now/60)*60, $$, $level, $msg) or warn "Error writing to log file: $!"; # print STDERR "[$$] $level: $msg\n" -- Configure bugmail: https://issues.apache.org/SpamAssassin/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
