log4j is logging errors based on level. Is there a way to log errors based on timestamp?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
log4j can be configured to log with the timestamp in the line. At least that's what I think you're asking. Use %d in your PatternLayout. Now I understand: log4j is asynchronous, so you may have time stamps out of order. If you want synchronous logging, I believe that is possible, but it is slower. |
|||||||||||
|
|
If you are logging to file with log4j, the timestamp is created when the logging event is created. So when the (debug, info, ...) method is invoked. If you have multiple threads running it could be that the messages are not written written to file in the same order as the timestamp. If you require the log-lines to be sorted in order, use a JDBC Appender and log to the database. Then you can query the database and sort on timestamp. |
|||
|
|