From ace1e02fc0aa6815ee0ae632cb8b9f27044703ec Mon Sep 17 00:00:00 2001 From: Jussi Saurio Date: Tue, 10 Jun 2025 16:51:34 +0300 Subject: [PATCH] Remove leftover info trace --- core/storage/pager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/storage/pager.rs b/core/storage/pager.rs index 255a9123e..dd77b951c 100644 --- a/core/storage/pager.rs +++ b/core/storage/pager.rs @@ -850,7 +850,7 @@ impl Pager { // Providing a page is optional, if provided it will be used to avoid reading the page from disk. // This is implemented in accordance with sqlite freepage2() function. pub fn free_page(&self, page: Option, page_id: usize) -> Result<()> { - tracing::info!("free_page(page_id={})", page_id); + tracing::trace!("free_page(page_id={})", page_id); const TRUNK_PAGE_HEADER_SIZE: usize = 8; const LEAF_ENTRY_SIZE: usize = 4; const RESERVED_SLOTS: usize = 2;