From c5a1540e0f11e79441ef49ebe7ac961a8781e288 Mon Sep 17 00:00:00 2001 From: p6nj Date: Thu, 31 Oct 2024 00:27:23 -0400 Subject: [PATCH] pretty debug --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f87805a..8d4b51c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -21,7 +21,7 @@ fn main() -> Result<(), serde_yml::Error> { Cli::Play(PlayOpts { input }) => { let bng_file: BngFile = serde_yml::from_str(&input)?; #[cfg(debug_assertions)] - println!("{:?}", bng_file); + println!("{:#?}", bng_file); } _ => unimplemented!("can't do that yet"), }