From 69ab55839f3ab457e092512fc6d9b55b4585e58b Mon Sep 17 00:00:00 2001 From: Maciej Hirsz Date: Wed, 6 Nov 2019 16:53:07 +0100 Subject: [PATCH] More logging --- actix-http/src/ws/codec.rs | 1 + 1 file changed, 1 insertion(+) 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) } };