Skip to content

Commit

Permalink
fix(mmclient): tune verbosity of conn message
Browse files Browse the repository at this point in the history
  • Loading branch information
colinmarc committed May 5, 2024
1 parent 4822bda commit e9f0d18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm-client/src/conn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit e9f0d18

Please sign in to comment.