Skip to content

Commit b0e2ec6

Browse files
Merge pull request #8 from KisaragiEffective/fix/log-format
2 parents 368c576 + bfd5956 commit b0e2ec6

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)