privoxy-log-parser: Highlight 'Complete client request followed by 59 bytes of pipeli...
authorFabian Keil <fk@fabiankeil.de>
Sat, 6 Feb 2021 21:30:05 +0000 (22:30 +0100)
committerFabian Keil <fk@fabiankeil.de>
Sun, 7 Feb 2021 13:36:32 +0000 (14:36 +0100)
tools/privoxy-log-parser.pl

index 54ffb2c..694d5fe 100755 (executable)
@@ -1865,6 +1865,11 @@ sub handle_loglevel_connect($) {
         # Flushed 3153 bytes of request body
         $c =~ s@(?<=Flushed )(\d+)@$h{'Number'}$1$h{'Standard'}@;
 
+    } elsif ($c =~ m/^Complete client request followed by/) {
+
+        # Complete client request followed by 59 bytes of pipelined data received.
+        $c =~ s@(?<=followed by )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+
     } elsif ($c =~ m/^Looks like we / or
              $c =~ m/^Unsetting keep-alive flag/ or
              $c =~ m/^No connections to wait/ or