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:
parent
c04b4678f1
commit
f383f618b5
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue