Skip to content

Commit

Permalink
fix: 修改ws的下行消息为debug级别
Browse files Browse the repository at this point in the history
  • Loading branch information
veehou committed Apr 15, 2022
1 parent 47c59c3 commit d85ffdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qqbot/core/network/ws_async/ws_async_client.py
Expand Up @@ -62,7 +62,7 @@ async def on_message(self, ws, message):
logger.info("[ws连接]程序启动成功!")
return
if "t" in message_event.keys():
logger.info("[ws连接]接收消息: %s" % message)
logger.debug("[ws连接]接收消息: %s" % message)
await parse_and_handle(message_event, message)

async def on_connected(self, ws):
Expand Down

0 comments on commit d85ffdf

Please sign in to comment.