[Privoxy-commits] [privoxy] 01/02: privoxy-log-parser: Highlight 'Not shutting down client connection on socket 8. The socket is no longer alive.'
User Git
git at git.privoxy.org
Mon Apr 1 13:50:32 CEST 2024
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit 30cb9a4ab4e11889f7416f4b15b3f74950b96f07
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Mon Apr 1 13:31:20 2024 +0200
privoxy-log-parser: Highlight 'Not shutting down client connection on socket 8. The socket is no longer alive.'
---
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 6dc5450a..ae18c57e 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -1976,6 +1976,11 @@ sub handle_loglevel_connect($) {
$c =~ s@(?<=offset at )(\d+)@$h{'Number'}$1$h{'Standard'}@;
$c =~ s@(?<=flushing )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+ } elsif ($c =~ m/^Not shutting down client connection on/) {
+
+ # Not shutting down client connection on socket 8. The socket is no longer alive.
+ $c =~ s@(?<=socket )(\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