Skip to content

Commit

Permalink
HBASE-26430 Increase log level in DefaultHeapMemoryTuner from DEBUG t…
Browse files Browse the repository at this point in the history
…o INFO
  • Loading branch information
apurtell committed Nov 6, 2021
1 parent ed2f3a9 commit bad597d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ public TunerResult tune(TunerContext context) {
// Ignoring the first few tuner periods
ignoreInitialPeriods++;
rollingStatsForTunerSteps.insertDataValue(0);
LOG.info("Ignoring initial tuning periods: {} so far, {} to ignore", ignoreInitialPeriods,
numPeriodsToIgnore);
return NO_OP_TUNER_RESULT;
}
StepDirection newTuneDirection = getTuneDirection(context);
Expand Down Expand Up @@ -347,9 +349,7 @@ private StepDirection getTuneDirection(TunerContext context) {
}
}
}
if (LOG.isDebugEnabled()) {
LOG.debug(tunerLog.toString());
}
LOG.info(tunerLog.toString());
return newTuneDirection;
}

Expand Down

0 comments on commit bad597d

Please sign in to comment.