Merge pull request #185 from msimerson/master

remove leftover closing paren from PR #119
This commit is contained in:
Matt Simerson 2015-01-03 21:08:11 -08:00
commit 60e33375b0

View File

@ -205,10 +205,10 @@ sub parse_line {
return 'info', $pid, undef, undef, $message return 'info', $pid, undef, undef, $message
if substr($message, 0, 13) eq 'Listening on '; if substr($message, 0, 13) eq 'Listening on ';
return 'err', $pid, undef, undef, $message) return 'err', $pid, undef, undef, $message
if $line =~ /at [\S]+ line \d/; # generic perl error if $line =~ /at [\S]+ line \d/; # generic perl error
print "UNKNOWN LINE: $line\n"; print "UNKNOWN LINE: $line\n";
return 'unknown', $pid, undef, undef, $message); return 'unknown', $pid, undef, undef, $message;
} }
sub parse_line_plugin { sub parse_line_plugin {