I dont like the way how the Liberty Server is showing MetaData. You have the choice of no MetaData at all in the console.log or WAY to much to work with it effective in the message.log.
my current formatting in the message.log looks like this:
[7/13/18 14:00:00:000 CEST] 000006a4 v.k.j.G I Running G
[7/13/18 14:00:00:002 CEST] 000006a4 v.k.j.G W Nothing to delete.
[7/13/18 14:00:00:002 CEST] 000006a4 vv.k.j.G I Import: update T
[7/13/18 14:00:00:003 CEST] 000006a4 v.k.j.G I next import schedule is Fri Jul 13 15:00:00 CEST 2018
This does not look that bad, but as soon as the output is longer and needs a linebreak it is just a big wall of cluttering text which is hard to read.
I would like to customize the timestamp to something like this:
[7/13/18 14:00:00] I Running G
[7/13/18 14:00:00] W Nothing to delete
[7/13/18 14:00:00] I Import: update T
I also would like to also swap around the month and the day [dd/mm/yy]
my server.xml is looking like this
<logging
maxFiles="10"
traceFormat="ADVANCED"
isoDateFormat="false"></logging>
I decided to use isoDateFormat="false"
since it just clutters the output with even more characters.
[2018-07-13T13:59:27.337+0200]
How can I customize the message.log output to only show a simple (european) date- and timeformat without the class-information?