From ca51a60b3cea31e4fc314472fa6a634b52fdd212 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Tue, 9 Sep 2025 15:02:40 +0300 Subject: [PATCH] core/storage: Demote restart_log() logging to debug --- core/storage/wal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/storage/wal.rs b/core/storage/wal.rs index d21267bbb..61663f0e2 100644 --- a/core/storage/wal.rs +++ b/core/storage/wal.rs @@ -2083,7 +2083,7 @@ impl WalFile { "We must hold writer and checkpoint locks to restart the log, found: {:?}", self.checkpoint_guard ); - tracing::info!("restart_log(mode={mode:?})"); + tracing::debug!("restart_log(mode={mode:?})"); { // Block all readers let mut shared = self.get_shared_mut();