pretty debug

This commit is contained in:
Breval Ferrari 2024-10-31 00:27:23 -04:00
parent a82579dfa5
commit c5a1540e0f
No known key found for this signature in database
GPG key ID: 6FED68D87C479A59

View file

@ -21,7 +21,7 @@ fn main() -> Result<(), serde_yml::Error> {
Cli::Play(PlayOpts { input }) => { Cli::Play(PlayOpts { input }) => {
let bng_file: BngFile = serde_yml::from_str(&input)?; let bng_file: BngFile = serde_yml::from_str(&input)?;
#[cfg(debug_assertions)] #[cfg(debug_assertions)]
println!("{:?}", bng_file); println!("{:#?}", bng_file);
} }
_ => unimplemented!("can't do that yet"), _ => unimplemented!("can't do that yet"),
} }