diff options
| author | Naz <ndpm13@ch-naseem.com> | 2025-10-12 11:00:08 +0100 |
|---|---|---|
| committer | Naz <ndpm13@ch-naseem.com> | 2025-10-12 11:00:08 +0100 |
| commit | 8a4544fc183e112564bdc6ac8511152c92ce7c56 (patch) | |
| tree | fe9102440b8c747f2f29902eecf35007b7c93936 /src/config.rs | |
| parent | bbce03f95d82d5373f2b6a1c28b03eb25d7bb94c (diff) | |
✨feat: add tracingdev
Diffstat (limited to 'src/config.rs')
| -rw-r--r-- | src/config.rs | 4 |
1 files changed, 4 insertions, 0 deletions
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)? }; |
