You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
The filter for timestamp is not working. I wrote below code for timestamp
if(filter.logsBefore!=null){
ZonedDateTime dateTime = Instant.ofEpochMilli(log.getTime())
.atZone(ZoneId.of("-5:00"));
tempLog.setTimestamp(dateTime);
if((dateTime.compareTo(filter.logsBefore))<=0)
logs.add(tempLog);
}
The text was updated successfully, but these errors were encountered: