From 71bbc36f61ced1abf96df4c109fb32bb22440fba Mon Sep 17 00:00:00 2001 From: Nikita Sivukhin Date: Fri, 15 Aug 2025 13:19:46 +0400 Subject: [PATCH] adjust log message --- core/storage/sqlite3_ondisk.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/storage/sqlite3_ondisk.rs b/core/storage/sqlite3_ondisk.rs index 1341a4ddf..733773836 100644 --- a/core/storage/sqlite3_ondisk.rs +++ b/core/storage/sqlite3_ondisk.rs @@ -1771,7 +1771,7 @@ pub fn read_entire_wal_dumb(file: &Arc) -> Result max_frame { cached.pop(); } - tracing::debug!("remove page {page} from the in-memory WAL index because it was past the last commited frame"); + tracing::debug!("remove page {page} from the in-memory WAL index because it was written after the last commited frame"); } pages_in_frames.truncate(max_frame as usize);