清理调试信息

This commit is contained in:
2023-10-19 07:03:21 +08:00
parent edae22db79
commit 2c00cb8ef9
3 changed files with 20 additions and 20 deletions

View File

@@ -154,7 +154,7 @@
// 只有一个基本信道, 用于交换和调度信息
clientList.setChannel('base', {
onopen: async event => {
console.debug('打开信道', event.target.label, '广播请求音乐列表和身份信息')
//console.debug('打开信道', event.target.label, '广播请求音乐列表和身份信息')
clientList.send('base', JSON.stringify({ type: 'get_music_list' })) // 要求对方发送音乐列表
clientList.send('base', JSON.stringify({ type: 'get_user_profile' })) // 要求对方发送身份信息
},