Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
hadashiA authored Feb 13, 2021
1 parent 7e2759d commit e549b6d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions VContainer/Assets/VContainer/Runtime/Unity/LifetimeScope.cs
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,7 @@ LifetimeScope GetRuntimeParent()
UnityEditor.EnterPlayModeOptions.DisableDomainReload) > 0;
if (rootLifetimeScope == null && disableDomainReloading)
{
var path = UnityEditor.AssetDatabase.GetAssetPath(rootLifetimeScope);
UnityEngine.Debug.LogError($"VContainerSettings.RootLifetimeScope is missing : {path}. Please try to re-compile C# scripts just once.");
UnityEngine.Debug.LogError("VContainerSettings.RootLifetimeScope is missing. Please try to re-compile C# scripts just once.");
}
#endif
if (rootLifetimeScope != null)
Expand Down

0 comments on commit e549b6d

Please sign in to comment.