From 8a4544fc183e112564bdc6ac8511152c92ce7c56 Mon Sep 17 00:00:00 2001 From: Naz Date: Sun, 12 Oct 2025 11:00:08 +0100 Subject: =?UTF-8?q?=E2=9C=A8feat:=20add=20tracing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/config.rs') diff --git a/src/config.rs b/src/config.rs index 2f1bbb7..31d8489 100644 --- a/src/config.rs +++ b/src/config.rs @@ -25,6 +25,10 @@ impl Config { let mut config = if config_path.exists() { Config::load_config(config_path)? } else { + tracing::info!( + "Couldn't load configuration from {}, generating defaults", + config_path.display() + ); Config::generate_defaults(config_home)? }; -- cgit v1.2.3