X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fwatchdbg;h=720904bfca013ec9d54224e26a637cef38bb7d1a;hb=c876cb33f90144dd899169954ffeb3285302897f;hp=dec397091dba07d826dbc7e7eb887c8a0a98d0ca;hpb=7404ef390b4c7408e9aa3584e4b69ed800845996;p=spider.git diff --git a/perl/watchdbg b/perl/watchdbg index dec39709..720904bf 100755 --- a/perl/watchdbg +++ b/perl/watchdbg @@ -77,12 +77,11 @@ sub printit my $line = shift; chomp $line; $line =~ s/([\x00-\x1f\x7f-\xff])/sprintf("\\x%02X", ord($1))/eg; - my @line = split '\^', $line; - my $t = shift @line; + my ($t, $l) = split /\^/, $line, 2; my ($sec,$min,$hour) = gmtime((defined $t) ? $t : time); my $buf = sprintf "%02d:%02d:%02d", $hour, $min, $sec; - print $buf, ' ', join('^', @line), "\n"; + print $buf, ' ', $l, "\n"; } } exit(0);