StdErrFlusher actually prints to stderr

This commit is contained in:
Michiel van Slobbe
2023-01-16 16:13:20 +01:00
committed by Nicolas Stalder
parent bd5bb6cc27
commit 0c03ffc3ae
+1 -1
View File
@@ -33,7 +33,7 @@ pub struct StderrFlusher {}
impl crate::Flusher for StderrFlusher {
fn flush(&self, logs: &str) {
print!("{}", logs);
eprint!("{}", logs);
}
}