[Privoxy-commits] [privoxy] 05/05: privoxy-log-parser: Highlight 'Reducing the chunk offset from 16219 to 128 after flushing 16091 bytes.' completely

User Git git at git.privoxy.org
Fri Jun 10 09:41:49 UTC 2022


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

git pushed a commit to branch master
in repository privoxy.

commit 609346d48eae7c367a67b7808dff3d25350cb15e
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Thu May 26 16:10:49 2022 +0200

    privoxy-log-parser: Highlight 'Reducing the chunk offset from 16219 to 128 after flushing 16091 bytes.' completely
---
 tools/privoxy-log-parser.pl | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl
index 3265ac72..f27188c4 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -1933,9 +1933,11 @@ sub handle_loglevel_connect($) {
     } elsif ($c =~ m/^Reducing the chunk offset from/) {
 
         # Reducing the chunk offset from 1096654 to 32704 after discarding 1063950 bytes to make room in the buffer.
+        # Reducing the chunk offset from 16219 to 128 after flushing 16091 bytes.
         $c =~ s@(?<=\d to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
         $c =~ s@(?<=offset from )(\d+)@$h{'Number'}$1$h{'Standard'}@;
         $c =~ s@(?<=after discarding )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+        $c =~ s@(?<=after flushing )(\d+)@$h{'Number'}$1$h{'Standard'}@;
 
     } elsif ($c =~ m/^Looks like we / or
              $c =~ m/^Unsetting keep-alive flag/ or

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Privoxy-commits mailing list