summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--src/search.rs2
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5075a5e..9facd98 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,10 @@ and this project adheres to
## [Unreleased]
+### Fixed
+
+- Fixed error message when ignoring file in a directory
+
## 0.3.0 - 2023-04-20
### Added
diff --git a/src/search.rs b/src/search.rs
index a7e6315..cf01681 100644
--- a/src/search.rs
+++ b/src/search.rs
@@ -33,7 +33,7 @@ impl Search {
None
}
Ok(p) if p.is_file() => {
- tracing::error!(?p, "Ignoring file");
+ tracing::debug!(?p, "Ignoring file");
None
}
Ok(p) => Some(p),