robin zhang tao created LOG4J2-454:
--------------------------------------
Summary: TimeBasedTriggeringPolicy should use event time millis
Key: LOG4J2-454
URL: https://issues.apache.org/jira/browse/LOG4J2-454
Project: Log4j 2
Issue Type: Bug
Components: Appenders
Affects Versions: 2.0-beta9
Reporter: robin zhang tao
In the TimeBasedTriggeringPolicy.java, it's using system current timestamp to
compare with nextRollover time:
Code:
final long now = System.currentTimeMillis();
if (now > nextRollover) { ... ....
But I think, it should use the event time millis:
Code:
final long now = event.getMillis();
if (now > nextRollover) {... ...
According the event time millis, it can be System.currentTimeMillis or
Message's timestamp if the message implements TimestampMessage.
So I think the event.getMillis() would be the best choice for comparing with
nextRollover time.
--
This message was sent by Atlassian JIRA
(v6.1#6144)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]