From 8c7f4684b4a121ff17e7a93ef79c0620f7f66bab Mon Sep 17 00:00:00 2001 From: _ <> Date: Sun, 8 Nov 2020 02:37:11 +0000 Subject: [PATCH] Log request paths --- src/relay/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/relay/mod.rs b/src/relay/mod.rs index 10c642d..ef8aee9 100644 --- a/src/relay/mod.rs +++ b/src/relay/mod.rs @@ -459,6 +459,8 @@ async fn handle_all (req: Request , state: Arc ) let path = req.uri ().path (); //println! ("{}", path); + debug! ("Request path: {}", path); + let api_key = req.headers ().get ("X-ApiKey"); if req.method () == Method::POST {