Skip to content

Commit

Permalink
[opt](log) Remove unnecessary log for analysis (apache#38944)
Browse files Browse the repository at this point in the history
  • Loading branch information
cambyzju authored and weixingyu12 committed Aug 14, 2024
1 parent d99a0d8 commit 27612d5
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ protected void doSample() throws Exception {
double scaleFactor = (double) totalRowCount / (double) pair.second;
// might happen if row count in fe metadata hasn't been updated yet
if (Double.isInfinite(scaleFactor) || Double.isNaN(scaleFactor)) {
LOG.warn("Scale factor is infinite or Nan, will set scale factor to 1.");
scaleFactor = 1;
tabletIds = Collections.emptyList();
pair.second = totalRowCount;
Expand Down

0 comments on commit 27612d5

Please sign in to comment.