X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fwatchdbg;h=348ac8fe7bbbe5ab49101d635c429b9a66113ed3;hb=f0910da57e166acb22e83de4e4b771d175074c80;hp=92765ab4132f0ee913e0e32c8b4ae442be8dafc0;hpb=ece0b001419b8e755540eaff4ce3a558fd7d939f;p=spider.git diff --git a/perl/watchdbg b/perl/watchdbg index 92765ab4..348ac8fe 100755 --- a/perl/watchdbg +++ b/perl/watchdbg @@ -30,8 +30,8 @@ use DXLog; use strict; my $fp = DXLog::new('debug', 'dat', 'd'); -my @today = Julian::unixtoj(time()); -my $fh = $fp->open(@today) or die $!; +my $today = $fp->unixtoj(time()); +my $fh = $fp->open($today) or die $!; my $nolines = 1; $nolines = shift if $ARGV[0] =~ /^-?\d+$/; $nolines = abs $nolines if $nolines < 0; @@ -58,16 +58,16 @@ for (;;) { # check that the debug hasn't rolled over to next day # open it if it has - my @now = Julian::unixtoj(time()); - if ($today[1] != $now[1]) { + my $now = $fp->unixtoj(time()); + if ($today->cmp($now)) { $fp->close; my $i; for ($i = 0; $i < 20; $i++) { - last if $fh = $fp->open(@now); + last if $fh = $fp->open($now); sleep 5; } die $! if $i >= 20; - @today = @now; + $today = $now; } } }