Skip to content

Commit c13ee83

Browse files
committed
Remove trace log that logs touching a file
1 parent adad86a commit c13ee83

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

collector/src/utils/fs.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ pub fn rename<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> anyhow::Result<
4343

4444
/// Touch a file, resetting its modification time.
4545
pub fn touch(path: &Path) -> anyhow::Result<()> {
46-
log::trace!("touching file {:?}", path);
47-
4846
filetime::set_file_mtime(path, filetime::FileTime::now())
4947
.with_context(|| format!("touching file {:?}", path))?;
5048

0 commit comments

Comments
 (0)