From 170fdc93f8f605eb6f85668f78e00486d58a70d5 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Sat, 23 Mar 2013 00:52:06 -0400 Subject: [PATCH] log/watch: raise default # of log lines to parse --- log/watch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log/watch b/log/watch index 0514a3d..427f58f 100755 --- a/log/watch +++ b/log/watch @@ -9,7 +9,7 @@ use File::Tail; my $dir = get_qp_dir() or die "unable to find QP home dir"; my $file = "$dir/log/main/current"; -my $fh = File::Tail->new(name=>$file, interval=>1, maxinterval=>1, debug =>1, tail =>100 ); +my $fh = File::Tail->new(name=>$file, interval=>1, maxinterval=>1, debug =>1, tail =>300 ); while ( defined (my $line = $fh->read) ) { my (undef, $line) = split /\s/, $line, 2; # strip off tai timestamps