Print non-export output on stderr

This commit is contained in:
Joscha 2023-02-12 00:55:44 +01:00
parent ca10ca277b
commit 84279d6800
7 changed files with 17 additions and 16 deletions

View file

@ -49,7 +49,7 @@ impl Config {
match toml::from_str(&content) {
Ok(config) => config,
Err(err) => {
println!("Error loading config file: {err}");
eprintln!("Error loading config file: {err}");
Self::default()
}
}