We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents adad86a + c13ee83 commit 67d16beCopy full SHA for 67d16be
collector/src/utils/fs.rs
@@ -43,8 +43,6 @@ pub fn rename<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> anyhow::Result<
43
44
/// Touch a file, resetting its modification time.
45
pub fn touch(path: &Path) -> anyhow::Result<()> {
46
- log::trace!("touching file {:?}", path);
47
-
48
filetime::set_file_mtime(path, filetime::FileTime::now())
49
.with_context(|| format!("touching file {:?}", path))?;
50
0 commit comments