Skip to content

Commit 67d16be

Browse files
authored
Merge pull request #1799 from Kobzol/remove-touch-trace
Remove trace log that logs touching a file
2 parents adad86a + c13ee83 commit 67d16be

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)