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
7cc876de52
commit
07c0eeebb3
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue