Skip to content

Commit

Permalink
plugin references as info
Browse files Browse the repository at this point in the history
closes #21
  • Loading branch information
rfuzzo committed Mar 14, 2024
1 parent d25cdb6 commit bd66284
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,19 +228,19 @@ pub fn sort(options: CliSortOptions) -> ExitCode {
match rule {
EWarningRule::Note(n) => {
info!("[NOTE]\n{}", n.get_comment());
debug!("Reference: [{}]", n.plugins.join(";"));
info!("Reference: [{}]", n.plugins.join(";"));
}
EWarningRule::Conflict(c) => {
warn!("[CONFLICT]\n{}", c.get_comment());
debug!("Reference: [{}]", c.plugins.join(";"));
info!("Reference: [{}]", c.plugins.join(";"));
}
EWarningRule::Requires(r) => {
error!("[REQUIRES]\n{}", r.get_comment());
debug!("Reference: [{}]", r.plugins.join(";"));
info!("Reference: [{}]", r.plugins.join(";"));
}
EWarningRule::Patch(p) => {
warn!("[Patch]\n{}", p.get_comment());
debug!("Reference: [{}]", p.plugins.join(";"));
info!("Reference: [{}]", p.plugins.join(";"));
}
}
println!();
Expand Down

0 comments on commit bd66284

Please sign in to comment.