refactor(task): 调整了 commu 模块中的日志输出

This commit is contained in:
XcantloadX 2025-04-01 13:01:54 +08:00
parent 6cd2c977b4
commit 6b5ba4b6ea
1 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ def handle_unread_commu(img: MatLike | None = None) -> bool:
:return: 是否跳过了交流
"""
ret = False
logger.info('Check and skip commu')
logger.debug('Check and skip commu')
img = use_screenshot(img)
skip_btn = image.find(R.Common.ButtonCommuSkip, preprocessors=[WhiteFilter()])
if skip_btn is None:
@ -53,10 +53,10 @@ def handle_unread_commu(img: MatLike | None = None) -> bool:
logger.debug('Pushing notification...')
user.info('发现未读交流', images=[img])
logger.debug('Fast forwarding...')
logger.debug('Skipping commu...')
it.wait()
logger.info('Fast forward done.')
logger.info('Commu skip done.')
return ret