From cd149755cbb4ec06d4ad7d25f4919ad434c35fba Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sat, 11 Feb 2023 11:16:37 -0800 Subject: [PATCH] rtiow: pretty print CLI options. --- rtiow/tracer/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtiow/tracer/src/main.rs b/rtiow/tracer/src/main.rs index 52a3fcc..f68d499 100644 --- a/rtiow/tracer/src/main.rs +++ b/rtiow/tracer/src/main.rs @@ -46,7 +46,7 @@ fn main() -> Result<(), std::io::Error> { eprintln!("--model should be one of {:?}", Model::VARIANTS); return Ok(()); } - info!("{:?}", opt); + info!("{:#?}", opt); let scene = opt.model.as_ref().unwrap().scene(&opt); fs::create_dir_all(&opt.output)?; if opt.pprof.is_some() && !cfg!(feature = "profile") {