Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
riya-n committed Apr 16, 2024
1 parent 8616b31 commit 3ae48a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scanner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ impl FileSet {
// TODO: check correct path to locate in.
let owners_of_paths =
codeowners::locate(".").map(|path| codeowners::from_path(path.as_path()));
log::info!("Owners of paths: {:?}", owners_of_paths);

let mut files = Vec::new();

Expand Down Expand Up @@ -106,8 +107,8 @@ impl FileSet {
owners.push(owner.to_string());
}
}
log::info!("{:?}: {}", file_path.to_str(), owners.join(", "));
}
log::info!("{:?}: {}", file_path.to_str(), owners.join(", "));

// Save file under junit/0, junit/1, etc.
// This is to avoid having to deal with potential file name collisions.
Expand Down

0 comments on commit 3ae48a8

Please sign in to comment.