1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-12-28 02:50:39 +00:00

Fix typo in error message (#554)

This commit is contained in:
ivan-ochc 2018-10-18 21:27:31 +03:00 committed by Douman
parent c04b4678f1
commit f383f618b5

View file

@ -551,12 +551,12 @@ impl<S: 'static, H> ProcessResponse<S, H> {
if self.resp.as_ref().unwrap().status().is_server_error()
{
error!(
"Error occured during request handling, status: {} {}",
"Error occurred during request handling, status: {} {}",
self.resp.as_ref().unwrap().status(), err
);
} else {
warn!(
"Error occured during request handling: {}",
"Error occurred during request handling: {}",
err
);
}