Revert "HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG (#3579)"
This reverts commit c770b1de0d
.
GH workflow error caused commit with incorrect message.
This commit is contained in:
parent
c770b1de0d
commit
7cc876de52
|
@ -77,7 +77,7 @@ public class CompactionProgress {
|
||||||
*/
|
*/
|
||||||
public long getTotalCompactingKVs() {
|
public long getTotalCompactingKVs() {
|
||||||
if (totalCompactingKVs < currentCompactedKVs) {
|
if (totalCompactingKVs < currentCompactedKVs) {
|
||||||
LOG.debug("totalCompactingKVs={} less than currentCompactedKVs={}",
|
LOG.warn("totalCompactingKVs={} less than currentCompactedKVs={}",
|
||||||
totalCompactingKVs, currentCompactedKVs);
|
totalCompactingKVs, currentCompactedKVs);
|
||||||
return currentCompactedKVs;
|
return currentCompactedKVs;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue