forked from Deuxfleurs/garage
More precise logging (warn only when returning a 500)
This commit is contained in:
parent
10b983b8e7
commit
3bcbbe1e31
1 changed files with 5 additions and 1 deletions
|
@ -62,7 +62,11 @@ async fn handler(
|
|||
let body: Body = Body::from(format!("{}\n", e));
|
||||
let mut http_error = Response::new(body);
|
||||
*http_error.status_mut() = e.http_status_code();
|
||||
warn!("Response: error {}, {}", e.http_status_code(), e);
|
||||
if e.http_status_code().is_server_error() {
|
||||
warn!("Response: error {}, {}", e.http_status_code(), e);
|
||||
} else {
|
||||
info!("Response: error {}, {}", e.http_status_code(), e);
|
||||
}
|
||||
Ok(http_error)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue