diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java b/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java index 8787fd97607b16e..136574d149e3614 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java +++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java @@ -2988,8 +2988,8 @@ public synchronized boolean replayJournal(long toJournalId) { } } long cost = System.currentTimeMillis() - startTime; - if (cost >= 1000) { - LOG.warn("replay journal cost too much time: {} replayedJournalId: {}", cost, replayedJournalId); + if (LOG.isDebugEnabled() && cost >= 1000 ) { + LOG.debug("replay journal cost too much time: {} replayedJournalId: {}", cost, replayedJournalId); } return hasLog;