no config is not an error

This commit is contained in:
Ferdinand Schober
2024-01-17 08:37:18 +01:00
parent f28f75418c
commit fad48c2504

View File

@@ -103,7 +103,7 @@ impl Config {
let config_toml = match ConfigToml::new(config_path.as_str()) {
Err(e) => {
log::error!("{config_path}: {e}");
log::warn!("{config_path}: {e}");
log::warn!("Continuing without config file ...");
None
}