mirror of
https://github.com/fafhrd91/actix-web
synced 2025-01-18 13:51:50 +01:00
Fix typo in error message (#554)
This commit is contained in:
parent
c04b4678f1
commit
f383f618b5
@ -551,12 +551,12 @@ impl<S: 'static, H> ProcessResponse<S, H> {
|
|||||||
if self.resp.as_ref().unwrap().status().is_server_error()
|
if self.resp.as_ref().unwrap().status().is_server_error()
|
||||||
{
|
{
|
||||||
error!(
|
error!(
|
||||||
"Error occured during request handling, status: {} {}",
|
"Error occurred during request handling, status: {} {}",
|
||||||
self.resp.as_ref().unwrap().status(), err
|
self.resp.as_ref().unwrap().status(), err
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
warn!(
|
warn!(
|
||||||
"Error occured during request handling: {}",
|
"Error occurred during request handling: {}",
|
||||||
err
|
err
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user