[Privoxy-commits] [privoxy] 40/41: privoxy-log-parser: Highlight 'Keeping chunk offset at 0 despite flushing 31 bytes.'

User Git git at git.privoxy.org
Wed Mar 20 12:39:17 CET 2024


This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository privoxy.

commit de207b7461b11dce70902251c5a1cdc111f773e9
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sun Mar 17 19:00:05 2024 +0100

    privoxy-log-parser: Highlight 'Keeping chunk offset at 0 despite flushing 31 bytes.'
---
 tools/privoxy-log-parser.pl | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl
index 29b8e1e8..b499237e 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -1970,6 +1970,12 @@ sub handle_loglevel_connect($) {
         $c = highlight_matched_url($c, "(?<=error message for )[^ ]*");
         $c =~ s@(?<=client socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
 
+    } elsif ($c =~ m/^Keeping chunk offset at/) {
+
+        # Keeping chunk offset at 0 despite flushing 31 bytes.
+        $c =~ s@(?<=offset at )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+        $c =~ s@(?<=flushing )(\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