[Privoxy-commits] [privoxy] 01/03: privoxy-log-parser: Highlight 'Complete client request followed by 59 bytes of pipelined data received.'
User Git
git at git.privoxy.org
Sun Feb 7 13:34:48 UTC 2021
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit 5654b0fe1ca305563b089988a7f72449fe43adb5
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sat Feb 6 22:30:05 2021 +0100
privoxy-log-parser: Highlight 'Complete client request followed by 59 bytes of pipelined data received.'
---
tools/privoxy-log-parser.pl | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl
index 54ffb2cc..694d5fe7 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -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
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list