Skip to content

Commit

Permalink
Set debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Sonic853 committed Dec 2, 2024
1 parent 0167a70 commit 8e722d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Scripts/PosterUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public void Log(string text, string _programName = "")
{
// if (debuger == null)
// {
// Debug.Log($"{_programName}: {text}");
Debug.Log($"{_programName}: {text}");
// return;
// }
// debuger.Log(text, _programName);
Expand All @@ -163,7 +163,7 @@ public void LogWarning(string text, string _programName = "")
{
// if (debuger == null)
// {
// Debug.LogWarning($"{_programName}: {text}");
Debug.LogWarning($"{_programName}: {text}");
// return;
// }
// debuger.LogWarning(text, _programName);
Expand All @@ -173,7 +173,7 @@ public void LogError(string text, string _programName = "")
{
// if (debuger == null)
// {
// Debug.LogError($"{_programName}: {text}");
Debug.LogError($"{_programName}: {text}");
// return;
// }
// debuger.LogError(text, _programName);
Expand Down

0 comments on commit 8e722d7

Please sign in to comment.