issue 2561, send all [bat error]s to stderr in default_error_handler

match default.
This commit is contained in:
deboard 2024-01-02 17:44:27 -05:00
parent c76ed99db2
commit 54cec4a8e0
1 changed files with 3 additions and 1 deletions

View File

@ -67,7 +67,9 @@ pub fn default_error_handler(error: &Error, output: &mut dyn Write) {
.ok();
}
_ => {
writeln!(output, "{}: {}", Red.paint("[bat error]"), error).ok();
// default - always write [bat error] to stderr
let stderr = std::io::stderr();
writeln!(&mut stderr.lock(), "{}: {}", Red.paint("[bat error]"), error).ok();
}
};
}