Skip to content

Commit befe675

Browse files
author
viz
committed
use stderr for logging
1 parent b5bbcbb commit befe675

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.gitignore

100644100755
File mode changed.

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ fn write_to_template(output_file_path: &str,
129129

130130
// log
131131
if *verbose {
132-
println!("creating {} from {}", output_file_path, template_file_path);
132+
eprintln!("creating {} from {}", output_file_path, template_file_path);
133133
}
134134

135135
fs::write(&output_file_path, &output).unwrap_or_else(|err| {

0 commit comments

Comments
 (0)