diff --git a/common/config.py b/common/config.py index 68cbfa4..c96b32a 100644 --- a/common/config.py +++ b/common/config.py @@ -26,7 +26,7 @@ async def gen_config_file(): async with aiofiles.open("./config.json", mode="w", encoding="utf-8") as f: await f.write(json.dumps(DEFAULT_CONFIG, indent=2, ensure_ascii=False, escape_forward_slashes=False)) - log.info('🖱️ 程序可能为第一次启动,请填写配置文件后重新启动程序') + log.info('🖱️ 程序可能为第一次启动或配置重置,请填写配置文件后重新启动程序') except Exception as e: log.error(f'❗ 配置文件生成失败,{stack_error(e)}')