aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/conn.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conn.rs b/src/conn.rs
index 0aee952..e965fc9 100644
--- a/src/conn.rs
+++ b/src/conn.rs
@@ -112,7 +112,7 @@ impl SendLoop for ServerConn {}
#[async_trait]
impl RecvLoop for ServerConn {
async fn recv_handler(self: Arc<Self>, id: u16, bytes: Vec<u8>) {
- debug!("ServerConn recv_handler {} ({} bytes)", id, bytes.len());
+ trace!("ServerConn recv_handler {} ({} bytes)", id, bytes.len());
let bytes: Bytes = bytes.into();
@@ -264,7 +264,7 @@ impl SendLoop for ClientConn {}
#[async_trait]
impl RecvLoop for ClientConn {
async fn recv_handler(self: Arc<Self>, id: RequestID, msg: Vec<u8>) {
- debug!("ClientConn recv_handler {} ({} bytes)", id, msg.len());
+ trace!("ClientConn recv_handler {} ({} bytes)", id, msg.len());
let mut inflight = self.inflight.lock().unwrap();
if let Some(ch) = inflight.remove(&id) {