reduce log noise on file writes (#11361)

pull/11367/head
Skyler Hawthorne 4 months ago committed by GitHub
parent 2a2bc79335
commit fa13b2bd0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1084,17 +1084,13 @@ impl Document {
Some(path) => match path.metadata() { Some(path) => match path.metadata() {
Ok(metadata) => match metadata.modified() { Ok(metadata) => match metadata.modified() {
Ok(mtime) => mtime, Ok(mtime) => mtime,
Err(e) => { Err(err) => {
log::error!( log::debug!("Could not fetch file system's mtime, falling back to current system time: {}", err);
"Using system time instead of fs' mtime: not supported on this platform: {e}"
);
SystemTime::now() SystemTime::now()
} }
}, },
Err(e) => { Err(err) => {
log::error!( log::debug!("Could not fetch file system's mtime, falling back to current system time: {}", err);
"Using system time instead of fs' mtime: failed to read file's metadata: {e}"
);
SystemTime::now() SystemTime::now()
} }
}, },

Loading…
Cancel
Save