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 22dafe9 commit 58e42b2Copy full SHA for 58e42b2
server/src/main.rs
@@ -60,6 +60,7 @@ async fn serve_task(state: AppState, address: String) {
60
.route("/submit_result/{id}", post(routes::submit_result))
61
.route("/validate_fetch/{id}", get(routes::validate_fetch))
62
.route("/validate_submit", post(routes::validate_submit))
63
+ .layer(TraceLayer::new_for_http())
64
.with_state(state);
65
66
let listener = TcpListener::bind(address).await.unwrap();
0 commit comments