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