Skip to content

Commit

Permalink
misc: switch from log to eprintln on a statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ripytide committed Nov 14, 2024
1 parent 26237be commit 3914d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl CleanCommand {
let unmanaged = unmanaged(managed, config)?;

if unmanaged.is_empty() {
log::info!("nothing to do since there are no unmanaged packages");
eprintln!("nothing to clean since there are no unmanaged packages");
return Ok(());
}

Expand Down

0 comments on commit 3914d03

Please sign in to comment.