Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
Clean Up logs
Browse files Browse the repository at this point in the history
  • Loading branch information
uurha committed Feb 28, 2024
1 parent a188753 commit 63ddef8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/BetterExtensions/Runtime/Utility/PlayerLoopUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand Down

0 comments on commit 63ddef8

Please sign in to comment.