Currently, the default format for a LogKit logger is:
"%7.7{priority} %5.5{time} [%8.8{category}] (%{context}):
%{message}\\n%{throwable}";
I was wondering what the reason for time having a length of 5 was. This
is a unix time,
so it just shows a value like: 10415 or something. Not very useful. How
about changing
this default value to:
"%7.7{priority} %10.10{time} [%8.8{category}] (%{context}):
%{message}\\n%{throwable}";
so that the whole time is visible.
A default like the following would be the most useful for most people,
but it may be a little
more CPU intensive.
"%7.7{priority} %19.19{time:yyyy-MM-dd' 'HH:mm:ss.SSS} [%8.8{category}]
(%{context}): %{message}\n%{throwable}"
Thoughts?
Leif
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>