diff --git a/src/web.rs b/src/web.rs index fcc7f1e..d5b1302 100644 --- a/src/web.rs +++ b/src/web.rs @@ -121,7 +121,8 @@ pub fn run(addr: SocketAddr, root: PathBuf) -> Result<(), Box> { // Fallback, always keep this last. let api = api.or(index); - let api = api.with(warp::log("photosync")); + //let api = api.with(warp::log("photosync")); + // We don't want metrics & heath checking filling up the logs, so we add this handler after // wrapping with the log filter. let routes = metrics().or(api);