Actually include the n_lines in the log entry line.

This commit is contained in:
Daniel Nichter
2013-06-10 20:15:16 -07:00
parent 4db9aac13b
commit 058bc30e27
2 changed files with 4 additions and 4 deletions

View File

@@ -276,8 +276,8 @@ sub _log {
}
sub _queue_log_entry {
my ($self, $ts, $log_level, $msg) = @_;
print "$ts,$log_level,$msg\n";
my ($self, $ts, $log_level, $n_lines, $msg) = @_;
print "$ts,$log_level,$n_lines,$msg\n";
return;
}