chore: update logs
This commit is contained in:
parent
6657b6295a
commit
aa4df32f6d
|
|
@ -91,10 +91,7 @@ where
|
|||
let msg = match collab_message_result {
|
||||
Ok(msg) => msg,
|
||||
Err(err) => {
|
||||
warn!(
|
||||
"Stream error: {}, stop receive incoming changes",
|
||||
err.into()
|
||||
);
|
||||
warn!("Stream error:{}, stop receive incoming changes", err.into());
|
||||
break;
|
||||
},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -223,7 +223,7 @@ pub async fn forward_message_to_group(
|
|||
.stream_tx
|
||||
.send(RealtimeMessage::ClientCollabV2([pair].into()));
|
||||
if let Err(err) = err {
|
||||
warn!("Send user:{} message to group error: {}", user.uid, err,);
|
||||
warn!("Send user:{} message to group:{}", user.uid, err);
|
||||
client_msg_router.remove(user);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ where
|
|||
}
|
||||
},
|
||||
Err(err) => {
|
||||
warn!("fail to encode collab {} error:{:?}", self.object_id, err);
|
||||
warn!("fail to encode collab {}=>{:?}", self.object_id, err);
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
@ -127,10 +127,7 @@ where
|
|||
}
|
||||
},
|
||||
Err(err) => {
|
||||
warn!(
|
||||
"attempt to encode collab {} error:{:?}",
|
||||
self.object_id, err
|
||||
);
|
||||
warn!("attempt to encode collab {}=>{:?}", self.object_id, err);
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue