Skip to content

Commit 43a1221

Browse files
Silence debug logging for failed S3 queries
The database/S3 handler is not the last one, so we'll often end up successfully returning a response. There's separate handling for logging actual 404s.
1 parent 13e1ce9 commit 43a1221

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/db/file.rs

-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ pub fn get_path(conn: &Connection, path: &str) -> Option<Blob> {
7373
let res = match res {
7474
Ok(r) => r,
7575
Err(err) => {
76-
debug!("error fetching {}: {:?}", path, err);
7776
return None;
7877
}
7978
};

0 commit comments

Comments
 (0)