Skip to content

Commit bfd5956

Browse files
chore: fix log format
1 parent 368c576 commit bfd5956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fn main() {
6262
pattern.replace_all(input_content.as_str(), |captures: &Captures| {
6363
let file_path = captures.index(1);
6464
let file_name = captures.index(2);
65-
println!("including: {file_path} {file_name}");
65+
println!("including: {file_path}/{file_name}");
6666
let full_file_path = format!("{file_path}{file_name}");
6767
match args.build_mode {
6868
BuildMode::Dynamic => format!("This section is migrated. Please see [{file_name}](./{full_file_path})"),

0 commit comments

Comments
 (0)