privoxy-log-parser: Highlight "Client tag 'forward-directly' matches"
[privoxy.git] / tools / privoxy-log-parser.pl
index 564f187..58d7a55 100755 (executable)
@@ -1253,6 +1253,12 @@ sub handle_loglevel_tagging($) {
         $c =~ s@(?<=tag \')([^\']*)@$h{'tag'}$1$h{'Standard'}@;
         $c = highlight_matched_host($c, '[^\s]+(?=\.$)');
 
+    } elsif ($c =~ /^Client tag/) {
+
+        # Client tag 'forward-directly' matches
+
+        $c =~ s@(?<=tag \')([^\']*)@$h{'tag'}$1$h{'Standard'}@;
+
     }
 
     return $c;