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:
Andrew Purtell 2021-08-27 10:13:34 -07:00
parent c770b1de0d
commit 7cc876de52
1 changed files with 2 additions and 2 deletions

View File

@ -77,8 +77,8 @@ 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;
} }
return totalCompactingKVs; return totalCompactingKVs;