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:
parent
30bb72bdb8
commit
3b1482ef60
|
@ -77,7 +77,7 @@ public class CompactionProgress {
|
|||
*/
|
||||
public long getTotalCompactingKVs() {
|
||||
if (totalCompactingKVs < currentCompactedKVs) {
|
||||
LOG.warn("totalCompactingKVs={} less than currentCompactedKVs={}",
|
||||
LOG.debug("totalCompactingKVs={} less than currentCompactedKVs={}",
|
||||
totalCompactingKVs, currentCompactedKVs);
|
||||
return currentCompactedKVs;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue