|
From: <jgr...@us...> - 2003-04-29 12:10:59
|
Update of /cvsroot/popfile/engine/POPFile
In directory sc8-pr-cvs1:/tmp/cvs-serv30535
Modified Files:
Logger.pm
Log Message:
Month was off by one
Index: Logger.pm
===================================================================
RCS file: /cvsroot/popfile/engine/POPFile/Logger.pm,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Logger.pm 18 Apr 2003 21:01:59 -0000 1.14
--- Logger.pm 29 Apr 2003 12:10:55 -0000 1.15
***************
*** 142,146 ****
--- 142,148 ----
my ( $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst ) = localtime;
$year += 1900;
+ $mon += 1;
my $msg = "$year/$mon/$mday $hour:$min:$sec $$: $message";
+
if ( $self->global_config_( 'debug' ) & 1 ) {
|