Log internal errors #2

Merged
michael merged 1 commits from log-errors into master 2022-05-02 13:02:23 -04:00
1 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,4 @@
#![feature(const_trait_impl)]
#![feature(const_fn_trait_bound)]
#[macro_use]
extern crate tracing;
@ -189,7 +188,14 @@ impl LogMiddleware {
async move {
let res = next.run(req).await;
let status = res.status();
debug!(status = %status, "Response");
match res.error() {
Some(e) => {
error!("Response with internal error: {e}");
}
None => {
debug!(status = %status, "Response");
}
}
Ok(res)
}
.instrument(span)