theme_importer: Output logs to stderr (#14890)

Will allow writing directly to a file without logging via `cargo run -p
theme_importer -- /path/to/file`

Release Notes:

- N/A
This commit is contained in:
Mag Mell 2024-07-21 20:53:37 +08:00 committed by GitHub
parent cd9b25d827
commit 70f7f2d2da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -106,7 +106,7 @@ fn main() -> Result<()> {
TermLogger::init(
LevelFilter::Trace,
log_config,
TerminalMode::Mixed,
TerminalMode::Stderr,
ColorChoice::Auto,
)
.expect("could not initialize logger");