From 63ddef87f247a78933a3b8eb7e06f2ed188cab69 Mon Sep 17 00:00:00 2001 From: uurhaa Date: Wed, 28 Feb 2024 18:10:43 +0100 Subject: [PATCH] Clean Up logs --- Assets/BetterExtensions/Runtime/Utility/PlayerLoopUtility.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }