fix trace

This commit is contained in:
Robin Appelman 2025-04-11 01:57:27 +02:00
commit 448993c27a
3 changed files with 269 additions and 243 deletions

View file

@ -170,7 +170,7 @@ async fn match_page(
Path(id): Path<u32>,
State(state): State<AppState>,
) -> Result<impl IntoResponse, ApiError> {
debug!(team = id, "requesting match");
debug!(r#match = id, "requesting match");
let response = state.client.match_info(id).await?;
Ok(Json(response))
}