[Privoxy-commits] [privoxy] 01/02: privoxy-log-parser: Highlight: 'Skipped filter 'banners-by-size' after job number 1: match limit exceeded (-47)'
User Git
git at git.privoxy.org
Wed Apr 23 09:35:52 CEST 2025
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit edd4bdb4fc13b0de2c2046d41db68b7a9a7b9583
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Tue Apr 8 14:45:54 2025 +0200
privoxy-log-parser: Highlight: 'Skipped filter 'banners-by-size' after job number 1: match limit exceeded (-47)'
---
tools/privoxy-log-parser.pl | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl
index 7ffc1259..8bfb8a3c 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -2231,6 +2231,13 @@ sub handle_loglevel_error($) {
# The socks connection timed out after 60 seconds.
$c =~ s@(?<=after )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+
+ } elsif ($c =~ m/^Skipped filter /) {
+
+ # Skipped filter 'banners-by-size' after job number 1: match limit exceeded (-47)
+ $c =~ s@(?<=filter ')([^']+)@$h{'Filter'}$1$h{'Standard'}@;
+ $c =~ s@(?<=number )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+ $c =~ s@(?<=exceeded \(-)(\d+)@$h{'Number'}$1$h{'Standard'}@;
}
# XXX: There are probably more messages that deserve highlighting.
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list