调整日志级别
This commit is contained in:
@@ -161,7 +161,7 @@ class GroupBotManager:
|
||||
"""从 Redis 加载数据到本地缓存"""
|
||||
group_list = r.smembers("group:list")
|
||||
# 输出group_list 列表
|
||||
logger.info(f"group_list: {group_list}")
|
||||
logger.debug(f"group_list: {group_list}")
|
||||
GroupBotManager.local_cache["group_list"] = set(group_list)
|
||||
|
||||
# 加载群组权限
|
||||
|
||||
@@ -64,7 +64,7 @@ class MessageStorage:
|
||||
# 确保图片存储目录存在
|
||||
if not os.path.exists(self.image_dir):
|
||||
os.makedirs(self.image_dir, exist_ok=True)
|
||||
logger.info(f"图片存储目录: {self.image_dir}")
|
||||
logger.debug(f"图片存储目录: {self.image_dir}")
|
||||
|
||||
def process_message(self, message: WxMessage):
|
||||
# 示例message字符串
|
||||
|
||||
Reference in New Issue
Block a user