From 7c31c67f9d19d3786b34686bdbbea299f4bffed3 Mon Sep 17 00:00:00 2001 From: youngq Date: Thu, 27 Feb 2025 16:31:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E9=83=A8=E5=88=86=E6=97=A0?= =?UTF-8?q?=E7=94=A8=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WGShare.API/Controllers/Frontend/RoomController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WGShare.API/Controllers/Frontend/RoomController.cs b/WGShare.API/Controllers/Frontend/RoomController.cs index 7556f42..101bf62 100644 --- a/WGShare.API/Controllers/Frontend/RoomController.cs +++ b/WGShare.API/Controllers/Frontend/RoomController.cs @@ -342,7 +342,7 @@ namespace WGShare.API.Controllers.Frontend userInfo.EnableMicr = enableMicr; RedisHelper.Instance.HSet(RedisKeyConstant.SessionManage.GetChannelUserKey(TenantId, roomNum), uid, userInfo); - _logger.LogInformation($@"开闭麦克分,推送一次,roomNum:{roomNum},enableMicr:{enableMicr},uid:{uid}"); + //_logger.LogInformation($@"开闭麦克分,推送一次,roomNum:{roomNum},enableMicr:{enableMicr},uid:{uid}"); // 通知所有人该用户麦克风状态 await _hubContext.Clients.Group(roomNum).OperMicr(userInfo, UId); }