From: Fabian Keil Date: Fri, 27 Jul 2012 17:40:31 +0000 (+0000) Subject: Accept the shiny new LOG_LEVEL_ACTIONS X-Git-Tag: v_3_0_20~292 X-Git-Url: http://www.privoxy.org/gitweb/images/static/gitweb.js?a=commitdiff_plain;h=80102e868e694fb9b90b91d10b95f22028b7a93a;p=privoxy.git Accept the shiny new LOG_LEVEL_ACTIONS --- diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl index 766f6c69..284e6f9e 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.133 2012/07/27 17:37:00 fabiankeil Exp $ +# $Id: privoxy-log-parser.pl,v 1.134 2012/07/27 17:37:22 fabiankeil Exp $ # # TODO: # - LOG_LEVEL_CGI, LOG_LEVEL_ERROR, LOG_LEVEL_WRITE content highlighting @@ -139,6 +139,7 @@ sub prepare_our_stuff () { Force => 'red', Writing => 'light_green', Received => 'yellow', + Actions => 'yellow', # ---------------------- URL => 'yellow', path => 'brown', @@ -2225,6 +2226,7 @@ sub parse_loop () { 'Fatal error' => \&handle_loglevel_ignore, 'Writing' => \&handle_loglevel_ignore, 'Received' => \&handle_loglevel_ignore, + 'Actions' => \&handle_loglevel_ignore, 'Unknown log level' => \&handle_loglevel_ignore, ); @@ -2316,6 +2318,7 @@ sub stats_loop () { 'Fatal error' => \&handle_loglevel_ignore, 'Writing' => \&handle_loglevel_ignore, 'Received' => \&handle_loglevel_ignore, + 'Actions' => \&handle_loglevel_ignore, 'Unknown log level' => \&handle_loglevel_ignore );