Skip to content

Commit

Permalink
[misc] Move log 'Skip flushing because the pending flush is empty' to…
Browse files Browse the repository at this point in the history
… debug level (#471)
  • Loading branch information
nicoloboschi authored and danpi committed Oct 19, 2022
1 parent cf1c4e8 commit 29f2e0d
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -203,12 +203,12 @@ private void flush() {
}

if (pendingFlushQueue.isEmpty()) {
log.info("Skip flushing, because the pending flush queue is empty ...");
log.debug("Skip flushing because the pending flush queue is empty...");
return;
}

if (!isFlushRunning.compareAndSet(false, true)) {
log.info("Skip flushing, because there is an outstanding flush ...");
log.info("Skip flushing because there is an outstanding flush...");
return;
}

Expand Down

0 comments on commit 29f2e0d

Please sign in to comment.