From a88924fabad288e2cbda6ffbb93fd5a7959cb93a Mon Sep 17 00:00:00 2001 From: drunark Date: Wed, 10 Apr 2024 14:24:59 -0700 Subject: [PATCH] path is missing from anyhow --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index fa2a016..394b60d 100644 --- a/src/config.rs +++ b/src/config.rs @@ -23,7 +23,7 @@ impl Config { for path in configs { let c = ConfigFile::load_from(&path) - .with_context(|| anyhow!("Failed to load config file: {:?}"))?; + .with_context(|| anyhow!("Failed to load config file: {:?}", path))?; if let Some(config) = c { debug!("Applying config from {:?}", path); merged.update(config);