[Fix] timestamp in console log formatter
Posted: Fri Apr 18, 2014 1:16 pm
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision 6502:
L2JDP Revision 10285:
I found a small bug in this version in timestamp in console log formatter lost the date by gameserver/login console.
example : [18 04 16:23:35]
http://trac.l2jserver.com/changeset/6493
Fix:
I did not know that i post to forgive me
.
» Find Revision
L2J Revision 6502:
L2JDP Revision 10285:
I found a small bug in this version in timestamp in console log formatter lost the date by gameserver/login console.
example : [18 04 16:23:35]
http://trac.l2jserver.com/changeset/6493
Fix:
Code: Select all
branches/unstable/L2J_Server_BETA/java/com/l2jserver/log/formatter/ConsoleLogFormatter.java -private final SimpleDateFormat dateFmt = new SimpleDateFormat("dd MMM H:mm:ss");+private final SimpleDateFormat dateFmt = new SimpleDateFormat("dd MM H:mm:ss");
