Skip to content

Commit

Permalink
update log level of ConcurrentHashMapCollector
Browse files Browse the repository at this point in the history
  • Loading branch information
caojiajun committed Jul 19, 2023
1 parent 09d9f52 commit 1ee1053
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class ConcurrentHashMapCollector implements IHotKeyCounterCollector {
.scheduleAtFixedRate(() -> {
long count = failedCount.sumThenReset();
if (count > 0) {
logger.error("ConcurrentHashMapCollector full, drop count = {}", count);
logger.info("ConcurrentHashMapCollector full, drop count = {}", count);
}
}, 30, 30, TimeUnit.SECONDS);
}
Expand Down

0 comments on commit 1ee1053

Please sign in to comment.