HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG (#3579)
This commit is contained in:
parent
11b32dbfd3
commit
c770b1de0d
|
@ -77,8 +77,8 @@ public class CompactionProgress {
|
||||||
*/
|
*/
|
||||||
public long getTotalCompactingKVs() {
|
public long getTotalCompactingKVs() {
|
||||||
if (totalCompactingKVs < currentCompactedKVs) {
|
if (totalCompactingKVs < currentCompactedKVs) {
|
||||||
LOG.warn("totalCompactingKVs={} less than currentCompactedKVs={}",
|
LOG.debug("totalCompactingKVs={} less than currentCompactedKVs={}",
|
||||||
totalCompactingKVs, currentCompactedKVs);
|
totalCompactingKVs, currentCompactedKVs);
|
||||||
return currentCompactedKVs;
|
return currentCompactedKVs;
|
||||||
}
|
}
|
||||||
return totalCompactingKVs;
|
return totalCompactingKVs;
|
||||||
|
|
Loading…
Reference in New Issue