From ceb642e24250e35cdb8aa946f287f2da07374d57 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Wed, 17 Mar 2021 23:10:38 +0200 Subject: [PATCH] Make test output less noisy --- src/page_cache.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/page_cache.rs b/src/page_cache.rs index bfe653bba3..63f24fa107 100644 --- a/src/page_cache.rs +++ b/src/page_cache.rs @@ -96,8 +96,9 @@ pub fn test_get_page_at_lsn() println!("testing GetPage@LSN for block {}", tag.unwrap().blknum); match get_page_at_lsn(tag.unwrap(), 0xffff_ffff_ffff_eeee) { - Ok(img) => { - println!("{:X?}", img); + Ok(_img) => { + // This prints out the whole page image. + //println!("{:X?}", img); }, Err(error) => { println!("GetPage@LSN failed: {}", error);