From 38a7b8b476a1f61bd5c93bb34d8b163197d019ec Mon Sep 17 00:00:00 2001 From: progre Date: Mon, 20 Nov 2023 00:07:09 +0900 Subject: [PATCH] WIP --- junowen-server/src/app.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/junowen-server/src/app.rs b/junowen-server/src/app.rs index 5b65a7d..7fd98a4 100644 --- a/junowen-server/src/app.rs +++ b/junowen-server/src/app.rs @@ -34,6 +34,7 @@ fn to_response( pub async fn app(req: &Request, db: &impl Database) -> Result { trace!("{:?}", req); + tracing::info!("{:?}", req.extensions()); if let Some(relative_uri) = req.uri().path().strip_prefix("/custom/") { return custom(relative_uri, req, db).await; }