eoc2: print filename before saving.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Bill Thiede 2021-06-24 16:44:45 -07:00
parent c9ec19c3cd
commit f24a90b77b

View File

@ -64,6 +64,8 @@ fn main() -> Result<()> {
}
}
c.write_to_file("/tmp/output.png")?;
let path = "/tmp/output.png";
println!("saving output to {}", path);
c.write_to_file(path)?;
Ok(())
}