From b3ae3adbb77c4111366cb59b80d757f361c70237 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sat, 27 Sep 2025 11:20:43 +0300 Subject: Partially implement config includes Subsequent commits will add merging for all leftover sections. --- src/utils/watcher.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils/watcher.rs') diff --git a/src/utils/watcher.rs b/src/utils/watcher.rs index 034e963a..ecb9007b 100644 --- a/src/utils/watcher.rs +++ b/src/utils/watcher.rs @@ -128,7 +128,7 @@ pub fn setup(state: &mut State, config_path: &ConfigPath) { // Parsing the config actually takes > 20 ms on my beefy machine, so let's do it on the // watcher thread. let process = |path: &ConfigPath| { - path.load().map_err(|err| { + path.load().config.map_err(|err| { warn!("{err:?}"); }) }; -- cgit