privoxy-log-parser: Clarify --statistics output
authorFabian Keil <fk@fabiankeil.de>
Wed, 24 Mar 2021 09:54:32 +0000 (10:54 +0100)
committerFabian Keil <fk@fabiankeil.de>
Thu, 20 May 2021 09:42:32 +0000 (11:42 +0200)
... by explicitly mentioning that the status codes
sent by the server may differ from the ones in
"debug 512" messages.

tools/privoxy-log-parser.pl

index 57a7f03..04d5865 100755 (executable)
@@ -2449,7 +2449,7 @@ sub print_stats() {
         print "HTTP version distribution unknown. No CLF message parsed yet. Is 'debug 512' enabled?\n";
     }
     if (exists $stats{'status-code'}) {
-        print "HTTP status codes:\n";
+        print "HTTP status codes according to 'debug 512' (status codes sent by the server may differ):\n";
         foreach my $status_code (sort {$stats{'status-code'}{$b} <=> $stats{'status-code'}{$a}} keys %{$stats{'status-code'}}) {
             printf "%8d : %-8d\n",  $stats{'status-code'}{$status_code}, $status_code;
         }