1
1
mirror of https://github.com/KenanZhu/AutoLibrary.git synced 2026-06-17 23:13:03 +08:00

refactor(AppInitializer): 初始化应用程序时,先初始化日志管理器,再初始化配置管理器

This commit is contained in:
2026-03-18 11:03:44 +08:00
parent 160d6a2428
commit e481824344
+2 -2
View File
@@ -45,8 +45,8 @@ def initializeLogManager(
def initializeApp(
) -> bool:
if not initializeConfigManager():
return False
if not initializeLogManager():
return False
if not initializeConfigManager():
return False
return True