Simplified two printlns picked out by clippy

This commit is contained in:
Nicholas-Baron
2021-10-09 12:12:13 -07:00
parent 0e2a782463
commit d2a522f423
+2 -2
View File
@@ -2067,9 +2067,9 @@ fn output_base_name(&self) -> PathBuf {
fn maybe_dump_to_stdout(&self, out: &str, err: &str) {
if self.config.verbose {
println!("------{}------------------------------", "stdout");
println!("------stdout------------------------------");
println!("{}", out);
println!("------{}------------------------------", "stderr");
println!("------stderr------------------------------");
println!("{}", err);
println!("------------------------------------------");
}