1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-04-05 01:29:36 +00:00

Even more logging

This commit is contained in:
Maciej Hirsz 2019-11-06 16:56:07 +01:00
parent 69ab55839f
commit bf6bd2660f

View file

@ -543,6 +543,12 @@ where
let msg = match frm {
Frame::Text(data) => {
Some(if let Some(data) = data {
let text = std::str::from_utf8(&data);
if text.is_err() {
error!("Invalid UTF-8 encoding");
}
Message::Text(std::str::from_utf8(&data)?.to_string())
} else {
Message::Text(String::new())