From: Fabian Keil Date: Tue, 10 Nov 2009 16:19:38 +0000 (+0000) Subject: Properly highlight: Empty server or forwarder response received on socket 3. Closing... X-Git-Tag: v_3_0_16~122 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=6529e25095c6b896ddf07a376c82de5a1a99a94f;p=privoxy.git Properly highlight: Empty server or forwarder response received on socket 3. Closing client socket 15 without sending data. --- 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.