From a0c592ff81335202b59c405eeed11bf92bf0aa5b Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 14 May 2021 14:02:58 -0500 Subject: [PATCH] feat(cli): Provide traceability on config loading --- src/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.rs b/src/config.rs index 305e794..8a7453c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -17,6 +17,7 @@ impl Config { let config = if let Some(path) = find_project_file(cwd, &["typos.toml", "_typos.toml", ".typos.toml"]) { + log::debug!("Loading {}", path.display()); Some(Self::from_file(&path)?) } else { None