mirror of
https://github.com/Mukheem/TwinTurbine.git
synced 2025-02-01 03:34:19 +01:00
33 lines
760 B
C#
33 lines
760 B
C#
using System.Diagnostics;
|
|
|
|
namespace Proxima
|
|
{
|
|
internal class Log
|
|
{
|
|
[Conditional("PROXIMA_LOG_VERBOSE")]
|
|
public static void Verbose(string message)
|
|
{
|
|
UnityEngine.Debug.Log("PXV: " + message);
|
|
}
|
|
|
|
public static void Info(string message)
|
|
{
|
|
UnityEngine.Debug.Log("PX: " + message);
|
|
}
|
|
|
|
public static void Warning(string message)
|
|
{
|
|
UnityEngine.Debug.LogWarning("PX: " + message);
|
|
}
|
|
|
|
public static void Error(string message)
|
|
{
|
|
UnityEngine.Debug.LogError("PX: " + message);
|
|
}
|
|
|
|
public static void Exception(System.Exception e)
|
|
{
|
|
UnityEngine.Debug.LogException(e);
|
|
}
|
|
}
|
|
} |