We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 420a779 commit a33aa73Copy full SHA for a33aa73
atcoder-problems-backend/src/server/mod.rs
@@ -30,7 +30,10 @@ where
30
HttpServer::new(move || {
31
App::new()
32
.app_data(web::Data::new(app_data.clone()))
33
- .wrap(actix_web::middleware::Logger::new(LOG_TEMPLATE).custom_request_replace("method", |req| req.method().to_string()))
+ .wrap(
34
+ actix_web::middleware::Logger::new(LOG_TEMPLATE)
35
+ .custom_request_replace("method", |req| req.method().to_string()),
36
+ )
37
.configure(services::config_services::<A>)
38
})
39
.bind((host, port))?
0 commit comments