diff --git a/mm-client/src/conn.rs b/mm-client/src/conn.rs index 77bd17a..654d05d 100644 --- a/mm-client/src/conn.rs +++ b/mm-client/src/conn.rs @@ -456,7 +456,7 @@ impl InnerConn { let (msg, len) = match protocol::decode_message(&buf) { Ok(v) => v, Err(protocol::ProtocolError::ShortBuffer(n)) => { - debug!(sid, have = buf.len(), needed = n, "partial message"); + trace!(sid, have = buf.len(), needed = n, "partial message"); self.partial_reads.insert(sid, buf); break; }