🎨 修改 MTProto 模块未导入的日记等级为 info

问题不大
This commit is contained in:
洛水居室 2022-09-11 15:41:06 +08:00
parent ad929209fc
commit 91f2478676
No known key found for this signature in database
GPG Key ID: C9DE87DA724B88FC

View File

@ -45,13 +45,13 @@ class MTProto(Service):
async def start(self): # pylint: disable=W0221
if not PYROGRAM_AVAILABLE:
logger.warning("MTProto 服务需要的 pyrogram 模块未导入 本次服务 client 为 None")
logger.info("MTProto 服务需要的 pyrogram 模块未导入 本次服务 client 为 None")
return
if bot.config.mtproto.api_id is None:
logger.warning("MTProto 服务需要的 api_id 未配置 本次服务 client 为 None")
logger.info("MTProto 服务需要的 api_id 未配置 本次服务 client 为 None")
return
if bot.config.mtproto.api_hash is None:
logger.warning("MTProto 服务需要的 api_hash 未配置 本次服务 client 为 None")
logger.info("MTProto 服务需要的 api_hash 未配置 本次服务 client 为 None")
return
self.client = Client(api_id=bot.config.mtproto.api_id, api_hash=bot.config.mtproto.api_hash, name=self.name,
bot_token=bot.config.bot_token, proxy=self.proxy)