diff --git a/actix-http/src/ws/codec.rs b/actix-http/src/ws/codec.rs index 4c726414f..cf530daab 100644 --- a/actix-http/src/ws/codec.rs +++ b/actix-http/src/ws/codec.rs @@ -122,6 +122,7 @@ impl Decoder for Codec { Ok(Some(Frame::BeginText(payload))) } _ => { + error!("Unfinished fragment {:?}", opcode); Err(ProtocolError::NoContinuation) } };