Skip to content

Commit d6b8e7e

Browse files
committed
Log if an ignore file was resolved during --respect-ignores
1 parent 00fdbe5 commit d6b8e7e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/cli/config.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ pub fn find_ignore_file_path(mut directory: PathBuf, recursive: bool) -> Option<
223223
debug!("config: looking for ignore file in {}", directory.display());
224224
let file_path = directory.join(".styluaignore");
225225
if file_path.is_file() {
226+
debug!("config: resolved ignore file at {}", file_path.display());
226227
Some(file_path)
227228
} else if recursive && directory.pop() {
228229
find_ignore_file_path(directory, recursive)

0 commit comments

Comments
 (0)