Skip to content

Commit 8e722d7

Browse files
committed
Set debug
1 parent 0167a70 commit 8e722d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Scripts/PosterUI.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public void Log(string text, string _programName = "")
153153
{
154154
// if (debuger == null)
155155
// {
156-
// Debug.Log($"{_programName}: {text}");
156+
Debug.Log($"{_programName}: {text}");
157157
// return;
158158
// }
159159
// debuger.Log(text, _programName);
@@ -163,7 +163,7 @@ public void LogWarning(string text, string _programName = "")
163163
{
164164
// if (debuger == null)
165165
// {
166-
// Debug.LogWarning($"{_programName}: {text}");
166+
Debug.LogWarning($"{_programName}: {text}");
167167
// return;
168168
// }
169169
// debuger.LogWarning(text, _programName);
@@ -173,7 +173,7 @@ public void LogError(string text, string _programName = "")
173173
{
174174
// if (debuger == null)
175175
// {
176-
// Debug.LogError($"{_programName}: {text}");
176+
Debug.LogError($"{_programName}: {text}");
177177
// return;
178178
// }
179179
// debuger.LogError(text, _programName);

0 commit comments

Comments
 (0)