Skip to content

Commit

Permalink
branch-2.1: [improvement](log)Reduce stats log. #45900 (#45916)
Browse files Browse the repository at this point in the history
Cherry-picked from #45900

Co-authored-by: James <[email protected]>
  • Loading branch information
github-actions[bot] and Jibing-Li authored Dec 25, 2024
1 parent 20c49c3 commit a3ec862
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,9 @@ public Optional<ColumnStatistic> getColumnStatistic(String colName) {
break;
}
default:
LOG.warn("get column stats for dlaType {} is not supported.", dlaType);
if (LOG.isDebugEnabled()) {
LOG.debug("get column stats for dlaType {} is not supported.", dlaType);
}
}
return Optional.empty();
}
Expand Down

0 comments on commit a3ec862

Please sign in to comment.