Skip to content

Commit 557ac4f

Browse files
committed
Switch noisy info!() call to trace!()
1 parent 7f4dddd commit 557ac4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

collector/src/execute.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ fn rename<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> anyhow::Result<()>
5959
}
6060

6161
fn touch(path: &Path) -> anyhow::Result<()> {
62-
log::info!("touching file {:?}", path);
62+
log::trace!("touching file {:?}", path);
6363

6464
filetime::set_file_mtime(path, filetime::FileTime::now()).with_context(|| format!("touching file {:?}", path))?;
6565

0 commit comments

Comments
 (0)