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:
parent
69ab55839f
commit
bf6bd2660f
1 changed files with 6 additions and 0 deletions
|
@ -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())
|
||||
|
|
Loading…
Reference in a new issue