>This produces log messages that look like this:
>INFO: /select q=solr&wt=python&indent=on hits=1 0 94
>
>If there was no DocSet, it would look like this:
>INFO: /select q=solr&wt=python&indent=on - 0 94
I would think that tacking the new stats onto the end of the line would
be better than in the middle. Usually when I parse log files it
involves something like:
String[] arr = line.split(" ");
code = arr[3]
time = arr[4]
instead of the following which is what it seems you're implying that
people are doing:
String[] arr = line.splti(" ")
code = arr[arr.length-2]
time = arr[arr.length-1]
but then again, I don't have any code written to parse things yet so
backwards compatibility isn't an issue for me and either format is fine.