Skip to content

Commit 1173ec8

Browse files
committed
Generate more verbose output
1 parent e69f908 commit 1173ec8

File tree

1 file changed

+2
-0
lines changed
  • src/tools/unstable-book-gen/src

1 file changed

+2
-0
lines changed

src/tools/unstable-book-gen/src/main.rs

+2
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,15 @@ macro_rules! t {
3737

3838
fn generate_stub_issue(path: &Path, name: &str, issue: u32) {
3939
let mut file = t!(File::create(path));
40+
println!("generating stub at {}", path.display());
4041
t!(file.write_fmt(format_args!(include_str!("stub-issue.md"),
4142
name = name,
4243
issue = issue)));
4344
}
4445

4546
fn generate_stub_no_issue(path: &Path, name: &str) {
4647
let mut file = t!(File::create(path));
48+
println!("generating stub (no issue) at {}", path.display());
4749
t!(file.write_fmt(format_args!(include_str!("stub-no-issue.md"),
4850
name = name)));
4951
}

0 commit comments

Comments
 (0)