From 2034dbed21fd8b0c1d0a37bfd91bfb621c5364ee Mon Sep 17 00:00:00 2001 From: yj <1336058017@qq.com> Date: Fri, 30 Aug 2024 12:20:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4console?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/page/Meeting/index.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/page/Meeting/index.tsx b/src/page/Meeting/index.tsx index 4b57d4d..a2a1a19 100644 --- a/src/page/Meeting/index.tsx +++ b/src/page/Meeting/index.tsx @@ -496,7 +496,6 @@ const Meeting: React.FC = () => { await agora.init(true) agora.registerEventHandler({ onJoinChannelSuccess: async (info: any, _elapsed: any) => { - console.log(info, '本地'); if (info.channelId === state.channelId) { if (String(info.localUid).length !== 9) { await getJoin(state.enableMicr, state.enableCamera) @@ -513,7 +512,6 @@ const Meeting: React.FC = () => { } }, onUserJoined: async (info: any, remoteUid: any, _elapsed: any) => { - console.log(info, remoteUid, '远端'); if (info.channelId === state.channelId) { if (String(remoteUid).length === 9) { setIsShare(remoteUid) @@ -529,7 +527,6 @@ const Meeting: React.FC = () => { } }, onUserOffline: async (info: any, remoteUid: any, _reason: any) => { - console.log(info, remoteUid, '离开'); if (info.channelId === state.channelId) { if (String(remoteUid).length === 9) { setIsShare(null)