[ 
https://issues.apache.org/jira/browse/LOG4J2-454?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

robin zhang tao closed LOG4J2-454.
----------------------------------


Verified.
Thanks Remko Popma.

> 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
>            Assignee: Remko Popma
>
> In the TimeBasedTriggeringPolicy.java, it's using system current timestamp to 
> compare with nextRollover time:
> Code:
> {code}
>         final long now = System.currentTimeMillis();
>         if (now > nextRollover) { ... ....
> {code}
> But I think, it should use the event time millis: 
> Code:
> {code}
>       final long now = event.getMillis();
>       if (now > nextRollover) {... ...
> {code}
> 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.5#6160)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to