summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/source_unit.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/source_unit.rs b/src/source_unit.rs
index 5ca5faa..7ee6993 100644
--- a/src/source_unit.rs
+++ b/src/source_unit.rs
@@ -33,7 +33,7 @@ pub fn gather_from_path(path: &Path, extension: Option<&str>, parse: ParseFn) ->
if let Ok(entries) = traverse_directory(entry.path) {
for entry in entries {
if let Ok(unit) = SourceUnit::from_path(&entry.path, extension, parse) {
- info!("Found source file at {path:?}");
+ info!("Found source file at {:?}", entry.path);
source_units.push(unit);
}
}