|
@@ -880,11 +880,13 @@ public class RoomServiceImpl implements RoomService {
|
|
|
|
|
|
// 回调整事件延迟通知
|
|
|
if (callbackTs < roomMember.getJoinDt().getTime()) {
|
|
|
- log.warn("leaveRoomSuccess: EVENT_DELAY_NOTICE roomId={}, userId={}, deviceNum={}, callbackTs={}, joinTs={}",
|
|
|
+ log.warn("leaveRoomSuccess: q roomId={}, userId={}, deviceNum={}, callbackTs={}, joinTs={}",
|
|
|
roomId, userId, deviceNum, callbackTs, roomMember.getJoinDt().getTime());
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ log.info("leaveRoomSuccess: roomId={}, userId={}, deviceNum={}, joinTs={}, callbackTs={}", roomId, userId, deviceNum,
|
|
|
+ roomMember.getJoinDt().getTime(), callbackTs);
|
|
|
// 用户离开事件
|
|
|
leaveRoomSuccess(roomId, userId, deviceNum);
|
|
|
}
|