From 12da8b2d16fd8789b2e45f50746e9a6fe0631e56 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Wed, 16 Oct 2019 21:11:30 -0700 Subject: [PATCH] Print out args at start. --- rtiow/src/bin/tracer.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rtiow/src/bin/tracer.rs b/rtiow/src/bin/tracer.rs index cd9f3c9..b893b1e 100644 --- a/rtiow/src/bin/tracer.rs +++ b/rtiow/src/bin/tracer.rs @@ -122,6 +122,7 @@ fn main() -> Result<(), std::io::Error> { .unwrap(); let start_time: DateTime = Utc::now(); let opt = Opt::from_args(); + info!("{:?}", opt); let scene = opt.model.scene(&opt); fs::create_dir_all(&opt.output)?; if opt.pprof.is_some() && !cfg!(feature = "profile") {