From fad48c2504b86efb26f85aae4a4ec9892cbee0c8 Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Wed, 17 Jan 2024 08:37:18 +0100 Subject: [PATCH] no config is not an error --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 2b35100..77cad1c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -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 }