Skip to content

Commit

Permalink
tone down more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
niteshbalusu11 committed Feb 11, 2025
1 parent 029b08b commit acdba1a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/server/handle_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ use super::{
pub async fn handle_request(req: Request<Body>) -> Result<Response<Body>, hyper::Error> {
let method = req.method();
let path = req.uri().path();
info!(target: "server::handle_request", "Received {} request for path: {}", method, path);

match (method, path) {
(&hyper::Method::GET, "/") => {
Expand Down

0 comments on commit acdba1a

Please sign in to comment.