Class Debug
Log debug messages to the console or screen
Methods
Log(LanguageCode)
Declaration
public static void Log(LanguageCode message)
Log(object)
Declaration
public static void Log(object message)
Log(params object[])
Declaration
public static void Log(params object[] messages)
LogError(LanguageCode)
Declaration
public static void LogError(LanguageCode message)
LogError(object)
Declaration
public static void LogError(object message)
LogError(params object[])
Declaration
public static void LogError(params object[] messages)
LogException(Exception)
Declaration
public static void LogException(Exception ex)
LogLabel(object)
Draw a label on top-right of the screen for the current frame
Declaration
public static void LogLabel(object obj)
LogLabel(params object[])
Draw a label on top-right of the screen for the current frame
Declaration
public static void LogLabel(params object[] objs)
LogLabel(string)
Draw a label on top-right of the screen for the current frame
Declaration
public static void LogLabel(string content)
LogWarning(LanguageCode)
Declaration
public static void LogWarning(LanguageCode message)
LogWarning(object)
Declaration
public static void LogWarning(object message)
LogWarning(params object[])
Declaration
public static void LogWarning(params object[] messages)
Events
OnLog
Declaration
public static event Action<object> OnLog
OnLogError
Declaration
public static event Action<object> OnLogError
OnLogErrorInternal
Declaration
public static event Action<int, string> OnLogErrorInternal
OnLogException
Declaration
public static event Action<Exception> OnLogException
OnLogInternal
Declaration
public static event Action<int, string> OnLogInternal
OnLogWarning
Declaration
public static event Action<object> OnLogWarning