]> granicus.if.org Git - pgbadger/commitdiff
fix interpreted ctrl+M and log format example from previous git merges
authorDarold <gilles@darold.net>
Thu, 24 May 2012 03:53:32 +0000 (05:53 +0200)
committerDarold <gilles@darold.net>
Thu, 24 May 2012 03:53:32 +0000 (05:53 +0200)
pgbadger

index 56b1d4e23c425b69011646f516dcc009b37bacca..574cc75713d66f2e10b5065d1f86d7e2b92ee4f3 100755 (executable)
--- a/pgbadger
+++ b/pgbadger
@@ -10,8 +10,6 @@
 #
 # You must enable SQL query logging : log_min_duration_statement = 0
 # Log line prefix should be : log_line_prefix = '%t [%p]: [%l-1] '
-# Log line prefix should be : log_line_prefix = '%t [%p]: [%l-1] user=username,db=dbname'
-# Log line prefix should be : log_line_prefix = '%t [%p]: [%l-1] db=dbname,user=username'
 # Log line prefix should be : log_line_prefix = '%t [%p]: [%l-1] user=%u,db=%d '
 # Log line prefix should be : log_line_prefix = '%t [%p]: [%l-1] db=%d,user=%u '
 #
@@ -304,8 +302,7 @@ my $cur_td = $t0;
 while (my $line = <$lfile>) {
        $cursize += length($line);
        chomp($line);
-       $line =~ s/
-//;
+       $line =~ s/\r//;
        $nlines++;
        next if (!$line);
 
@@ -2195,8 +2192,7 @@ sub autodetect_format
        }
        while (my $line = <$tfile>) {
                chomp($line);
-               $line =~ s/
-//;
+               $line =~ s/\r//;
                next if (!$line);
                $nline++;
                # Is syslog lines ?