This commit is contained in:
zhangzheng
2026-03-17 17:40:27 +08:00
parent 20b59e0e54
commit 4d8a107012
4 changed files with 29 additions and 29 deletions

View File

@@ -157,7 +157,7 @@ namespace Stary.Evo
}
catch (Exception e)
{
Debug.LogError($"UnityEvo:从远程加载资源包,初始化失败:{e}");
Debug.LogWarning($"UnityEvo:从远程加载资源包,初始化失败:{e}");
}
return false;
@@ -189,7 +189,7 @@ namespace Stary.Evo
}
catch (Exception e)
{
Debug.LogError($"UnityEvo:从本地缓存中资源包,初始化失败:{e}");
Debug.LogWarning($"UnityEvo:从本地缓存中资源包,初始化失败:{e}");
}
@@ -203,7 +203,7 @@ namespace Stary.Evo
}
else
{
Debug.LogError($"UnityEvo:从本地缓存中加载资源包,初始化获取版本号失败!");
Debug.LogWarning($"UnityEvo:从本地缓存中加载资源包,初始化获取版本号失败!");
return false;
}
}
@@ -255,7 +255,7 @@ namespace Stary.Evo
}
else
{
Debug.LogError($"UnityEvo:StreamingAssets下的{packageDomainName}包不存在");
Debug.LogWarning($"UnityEvo:StreamingAssets下的{packageDomainName}包不存在");
}
#endif
}
@@ -296,14 +296,14 @@ namespace Stary.Evo
}
else //版本一致,加载缓存资源
{
Debug.Log($"UnityEvo:当前版本{oldVersion}资源版本一致,自动跳过更新...");
Debug.LogWarning($"UnityEvo:当前版本{oldVersion}资源版本一致,自动跳过更新...");
}
return true;
}
else
{
Debug.LogError($"UnityEvo:获取资源版本失败: 【{resDmainMessageEntity.message}】");
Debug.LogWarning($"UnityEvo:获取资源版本失败: 【{resDmainMessageEntity.message}】");
return false;
}
}