mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-25 10:31:02 -05:00
fix: Move some reports to stderr
This commit is contained in:
parent
d1be9c1944
commit
8459b06f23
1 changed files with 6 additions and 6 deletions
|
@ -164,7 +164,7 @@ impl Report for PrintBrief {
|
||||||
fn report(&self, msg: Message) {
|
fn report(&self, msg: Message) {
|
||||||
match msg {
|
match msg {
|
||||||
Message::BinaryFile(msg) => {
|
Message::BinaryFile(msg) => {
|
||||||
println!("{}", msg);
|
log::info!("{}", msg);
|
||||||
}
|
}
|
||||||
Message::Correction(msg) => {
|
Message::Correction(msg) => {
|
||||||
println!(
|
println!(
|
||||||
|
@ -186,10 +186,10 @@ impl Report for PrintBrief {
|
||||||
println!("{}", itertools::join(msg.data.iter(), " "));
|
println!("{}", itertools::join(msg.data.iter(), " "));
|
||||||
}
|
}
|
||||||
Message::PathError(msg) => {
|
Message::PathError(msg) => {
|
||||||
println!("{}: {}", msg.path.display(), msg.msg);
|
log::error!("{}: {}", msg.path.display(), msg.msg);
|
||||||
}
|
}
|
||||||
Message::Error(msg) => {
|
Message::Error(msg) => {
|
||||||
println!("{}", msg.msg);
|
log::error!("{}", msg.msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -202,7 +202,7 @@ impl Report for PrintLong {
|
||||||
fn report(&self, msg: Message) {
|
fn report(&self, msg: Message) {
|
||||||
match msg {
|
match msg {
|
||||||
Message::BinaryFile(msg) => {
|
Message::BinaryFile(msg) => {
|
||||||
println!("{}", msg);
|
log::info!("{}", msg);
|
||||||
}
|
}
|
||||||
Message::Correction(msg) => print_long_correction(msg),
|
Message::Correction(msg) => print_long_correction(msg),
|
||||||
Message::PathCorrection(msg) => {
|
Message::PathCorrection(msg) => {
|
||||||
|
@ -220,10 +220,10 @@ impl Report for PrintLong {
|
||||||
println!("{}", itertools::join(msg.data.iter(), " "));
|
println!("{}", itertools::join(msg.data.iter(), " "));
|
||||||
}
|
}
|
||||||
Message::PathError(msg) => {
|
Message::PathError(msg) => {
|
||||||
println!("{}: {}", msg.path.display(), msg.msg);
|
log::error!("{}: {}", msg.path.display(), msg.msg);
|
||||||
}
|
}
|
||||||
Message::Error(msg) => {
|
Message::Error(msg) => {
|
||||||
println!("{}", msg.msg);
|
log::error!("{}", msg.msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue