Skip to content

Commit

Permalink
Revert "HBASE-26189 Reduce log level of CompactionProgress notice to …
Browse files Browse the repository at this point in the history
…DEBUG (#3579)"

This reverts commit c770b1d.

GH workflow error caused commit with incorrect message.
  • Loading branch information
apurtell committed Aug 27, 2021
1 parent c770b1d commit 7cc876d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ public void complete() {
*/
public long getTotalCompactingKVs() {
if (totalCompactingKVs < currentCompactedKVs) {
LOG.debug("totalCompactingKVs={} less than currentCompactedKVs={}",
totalCompactingKVs, currentCompactedKVs);
LOG.warn("totalCompactingKVs={} less than currentCompactedKVs={}",
totalCompactingKVs, currentCompactedKVs);
return currentCompactedKVs;
}
return totalCompactingKVs;
Expand Down

0 comments on commit 7cc876d

Please sign in to comment.