X-Git-Url: http://www.privoxy.org/gitweb/templates.html?a=blobdiff_plain;f=tools%2Fprivoxy-log-parser.pl;h=29b8e1e859d5351a59516735d7a59f6b36bccf9b;hb=679a69acd2633bcaf94add67917bc73e91fa672a;hp=c2c13fe939373a851e0140d20ba0a4f054259b17;hpb=99d7471c05f3d380a624d260a75538fbb4a27107;p=privoxy.git diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl index c2c13fe9..29b8e1e8 100755 --- a/tools/privoxy-log-parser.pl +++ b/tools/privoxy-log-parser.pl @@ -1964,6 +1964,12 @@ sub handle_loglevel_connect($) { $c =~ s@(?<=connected over )(TLSv\d\.\d)@$h{'tls-version'}$1$h{'Standard'}@; $c =~ s@(?<=\()([^)]+)@$h{'cipher-suite'}$1$h{'Standard'}@; + } elsif ($c =~ m/^Couldn't deliver the error message for/) { + + # Couldn't deliver the error message for https://m.media-amazon.com/[...] through client socket 18 using TLS/SSL + $c = highlight_matched_url($c, "(?<=error message for )[^ ]*"); + $c =~ s@(?<=client 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