Skip to content

Commit 7ccf2ff

Browse files
committed
builds cleanly
1 parent a60797b commit 7ccf2ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

logback-core/src/main/java/ch/qos/logback/core/spi/AbstractComponentTracker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ private boolean isEntryStale(Entry entry, long now) {
163163
// stopped or improperly started appenders are considered stale
164164
// see also http://jira.qos.ch/browse/LBCLASSIC-316
165165
C c = entry.component;
166-
if(!isComponentStale(c))
166+
if(isComponentStale(c))
167167
return true;
168168

169169
return ((entry.timestamp + timeout) < now);

0 commit comments

Comments
 (0)