Skip to content

Commit

Permalink
Remove isDebugEnabled wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
shivam-sharma7 committed Aug 19, 2023
1 parent cfa6f26 commit dc14b73
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -666,9 +666,8 @@ private List<Integer> filterDatasetIds(TableReportConfigDAO config, TableReportD
datasetIds.add(datasetId);
} else {
debugList.append("(filtered)");
if (log.isDebugEnabled()) {
log.debugf("Dataset %d/%d (%d) filtered out, value: %s", runId, ordinal, datasetId, row[3]);
}
log.debugf("Dataset %d/%d (%d) filtered out, value: %s", runId, ordinal, datasetId, row[3]);

}
} else {
debugList.append("(filtered: not boolean)");
Expand Down

0 comments on commit dc14b73

Please sign in to comment.