fix to be &&
This commit is contained in:
parent
271ea76635
commit
d8c3571947
1 changed files with 1 additions and 1 deletions
|
|
@ -1206,7 +1206,7 @@ public class Worker implements Runnable {
|
|||
private void resetInfoLogging() {
|
||||
if (infoReporting) {
|
||||
// We just logged at INFO level for a pass through worker loop
|
||||
if (!LOG.isDebugEnabled() || !LOG.isTraceEnabled()) {
|
||||
if (!LOG.isDebugEnabled() && !LOG.isTraceEnabled()) {
|
||||
infoReporting = false;
|
||||
nextReportTime = System.currentTimeMillis() + reportIntervalMillis;
|
||||
} // else is DEBUG or TRACE so leave reporting true
|
||||
|
|
|
|||
Loading…
Reference in a new issue