mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
21 lines
380 B
C#
21 lines
380 B
C#
using System.Diagnostics;
|
|
|
|
namespace UniFramework.Pooling
|
|
{
|
|
internal static class UniLogger
|
|
{
|
|
[Conditional("DEBUG")]
|
|
public static void Log(string info)
|
|
{
|
|
UnityEngine.Debug.Log(info);
|
|
}
|
|
public static void Warning(string info)
|
|
{
|
|
UnityEngine.Debug.LogWarning(info);
|
|
}
|
|
public static void Error(string info)
|
|
{
|
|
UnityEngine.Debug.LogError(info);
|
|
}
|
|
}
|
|
} |