In log4j.properties I can set PatternLayout e.g. ("[%p] %c - %m - %d %n")
Is there any symbol (%something) which returns current time in milliseconds?
|
|
There is no Log4J symbol that does exactly what you want.
One possible way of achieving what you want is to extend the behaviour of Log4j, it's quite a bit more complex, but if it's absolutely necessary... here you go: http://www.jajakarta.org/log4j/jakarta-log4j-1.1.3/docs/deepExtension.html Edit: Keep in mind that, from your comment, if you need to figure out time differences between executions in different machines, you have to make sure the clocks of the machines are synchronized, or it'll be leading you to wrong conclusions. |
|||||||||
|
|
You can try this one.
Date params http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/PatternLayout.html |
|||
|
|