Skip to content

Commit 6909ecd

Browse files
committed
LogError made to LogWarning for memory unload check
1 parent f9b1b14 commit 6909ecd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Basis/Packages/com.basis.bundlemanagement/BasisLoadhandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ public static void UnloadAllForUrl(string remoteUrl)
417417
{
418418
if (LoadedBundles.TryGetValue(key, out BasisTrackedBundleWrapper inUseCheck) && inUseCheck != null && inUseCheck.IsInUse)
419419
{
420-
BasisDebug.LogError($"Skipping in-memory unload for: {remoteUrl}; bundle is still in use.");
420+
BasisDebug.LogWarning($"Skipping in-memory unload for: {remoteUrl}; bundle is still in use.", BasisDebug.LogTag.Event);
421421
continue;
422422
}
423423
if (LoadedBundles.TryRemove(key, out BasisTrackedBundleWrapper removed) && removed != null)

0 commit comments

Comments
 (0)