bugfix: debug or trace logging level now properly logs all worker loops (#1371)

* bugfix: debug or trace logging level now properly logs all worker loops
This commit is contained in:
lucienlu-aws 2024-07-25 17:01:27 -07:00 committed by GitHub
parent bbc0541883
commit 51ef718fc0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.isInfoEnabled()) {
if (!LOG.isDebugEnabled() && !LOG.isTraceEnabled()) {
infoReporting = false;
nextReportTime = System.currentTimeMillis() + reportIntervalMillis;
} // else is DEBUG or TRACE so leave reporting true