Skip to content

Commit

Permalink
HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG (#…
Browse files Browse the repository at this point in the history
…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>
  • Loading branch information
apurtell committed Aug 27, 2021
1 parent 7cc876d commit 07c0eee
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.warn("totalCompactingKVs={} less than currentCompactedKVs={}",
totalCompactingKVs, currentCompactedKVs);
LOG.debug("totalCompactingKVs={} less than currentCompactedKVs={}",
totalCompactingKVs, currentCompactedKVs);
return currentCompactedKVs;
}
return totalCompactingKVs;
Expand Down

0 comments on commit 07c0eee

Please sign in to comment.