HBASE-26189 Reduce log level of CompactionProgress notice to DEBUG (#3579)

This commit is contained in:
Andrew Purtell 2021-08-27 10:11:16 -07:00 committed by GitHub
parent 11b32dbfd3
commit c770b1de0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -77,8 +77,8 @@ public class CompactionProgress {
*/
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;