HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG (#3579)

Signed-off-by: Bharath Vissapragada <bharathv@apache.org>
Signed-off-by: Duo Zhang <zhangduo@apache.org>
Signed-off-by: Nick Dimiduk <ndimiduk@apache.org>
This commit is contained in:
Andrew Purtell 2021-08-27 10:13:34 -07:00
parent 7cc876de52
commit 07c0eeebb3
1 changed files with 2 additions and 2 deletions

View File

@ -77,8 +77,8 @@ public class CompactionProgress {
*/
public long getTotalCompactingKVs() {
if (totalCompactingKVs < currentCompactedKVs) {
LOG.warn("totalCompactingKVs={} less than currentCompactedKVs={}",
totalCompactingKVs, currentCompactedKVs);
LOG.debug("totalCompactingKVs={} less than currentCompactedKVs={}",
totalCompactingKVs, currentCompactedKVs);
return currentCompactedKVs;
}
return totalCompactingKVs;