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.
2 parents 6991b23 + 7174d9f commit 1f38e6bCopy full SHA for 1f38e6b
src/utils.rs
@@ -17,7 +17,7 @@ pub struct AppError(anyhow::Error);
17
18
impl IntoResponse for AppError {
19
fn into_response(self) -> Response {
20
- tracing::error!("error={}", &self.0);
+ tracing::error!("{:?}", &self.0);
21
(
22
StatusCode::INTERNAL_SERVER_ERROR,
23
format!("Something went wrong: {}", self.0),
0 commit comments