1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-19 20:35:36 +02:00
This commit is contained in:
Nikolay Kim
2019-04-10 15:05:03 -07:00
parent 6b42b2aaee
commit 52aebb3bca
4 changed files with 16 additions and 6 deletions

View File

@@ -123,8 +123,11 @@ where
serde_urlencoded::from_str::<T>(req.query_string())
.map(|val| Ok(Query(val)))
.unwrap_or_else(|e| {
log::debug!("Failed during Query extractor deserialization. \
Request path: {:?}", req.path());
log::debug!(
"Failed during Query extractor deserialization. \
Request path: {:?}",
req.path()
);
Err(e.into())
})
}