diff --git a/Assets/BetterExtensions/Runtime/Utility/PlayerLoopUtility.cs b/Assets/BetterExtensions/Runtime/Utility/PlayerLoopUtility.cs index c01c0a2..32a6fe7 100644 --- a/Assets/BetterExtensions/Runtime/Utility/PlayerLoopUtility.cs +++ b/Assets/BetterExtensions/Runtime/Utility/PlayerLoopUtility.cs @@ -185,7 +185,7 @@ private static void InsertLoopWithOffset(Type sourceLoopType, Type destinationLo var sourceSubIndex = parentSystem.FindSubSystemIndex(sourceLoopType); if (sourceSubIndex == -1) { - var message = $"[{nameof(PlayerLoopUtility)}] {nameof(InsertLoopWithOffset)}: not found {nameof(sourceLoopType)}({sourceLoopType.Name})"; + var message = $"Not found {nameof(sourceLoopType)}({sourceLoopType.Name})"; Debug.LogWarning(message); return; } @@ -202,7 +202,7 @@ private static void InsertLoopWithOffset(Type sourceLoopType, Type destinationLo } else if (parentSystem.HasSubSystemOf(destinationLoopType)) { - var message = $"[{nameof(PlayerLoopUtility)}] {nameof(InsertLoopWithOffset)}: {nameof(sourceLoopType)}({sourceLoopType.Name}) already contains {nameof(destinationLoopType)}{destinationLoopType}"; + var message = $"{nameof(sourceLoopType)}({sourceLoopType.Name}) already contains {nameof(destinationLoopType)}{destinationLoopType}"; Debug.LogWarning(message); return; }