Print out args at start.

This commit is contained in:
Bill Thiede 2019-10-16 21:11:30 -07:00
parent 5d9e180817
commit 12da8b2d16

View File

@ -122,6 +122,7 @@ fn main() -> Result<(), std::io::Error> {
.unwrap();
let start_time: DateTime<Utc> = 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") {