From 6529e25095c6b896ddf07a376c82de5a1a99a94f Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Tue, 10 Nov 2009 16:19:38 +0000 Subject: [PATCH] Properly highlight: Empty server or forwarder response received on socket 3. Closing client socket 15 without sending data. --- tools/privoxy-log-parser.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl index 2899338d..d32a838c 100755 --- a/tools/privoxy-log-parser.pl +++ b/tools/privoxy-log-parser.pl @@ -8,7 +8,7 @@ # # http://www.fabiankeil.de/sourcecode/privoxy-log-parser/ # -# $Id: privoxy-log-parser.pl,v 1.57 2009/10/10 05:50:02 fabiankeil Exp $ +# $Id: privoxy-log-parser.pl,v 1.58 2009/10/31 10:14:07 fabiankeil Exp $ # # TODO: # - LOG_LEVEL_CGI, LOG_LEVEL_ERROR, LOG_LEVEL_WRITE content highlighting @@ -1851,7 +1851,10 @@ sub handle_loglevel_error ($) { if ($c =~ m/^Empty server or forwarder response received on socket \d+./) { # Empty server or forwarder response received on socket 4. + # Empty server or forwarder response received on socket 3. \ + # Closing client socket 15 without sending data. $c =~ s@(?<=on socket )(\d+)@$h{'Number'}$1$h{'Standard'}@; + $c =~ s@(?<=client socket )(\d+)@$h{'Number'}$1$h{'Standard'}@; } # XXX: There are probably more messages that deserve highlighting. -- 2.39.2