Class Debugger
Customized debug logger class containing methods to ease debugging
Inherited Members
Namespace: Doozy.Runtime.Common
Assembly: cs.temp.dll.dll
Syntax
public static class Debugger
Methods
Log(Object, UnityEngine.Object)
Log a message to the console
Declaration
public static void Log(object message, UnityEngine.Object context = null)
Parameters
Type | Name | Description |
---|---|---|
Object | message | String or object to be converted to string representation for display |
UnityEngine.Object | context | Object to which the message applies |
LogError(Object, UnityEngine.Object)
Log an error message to the console
Declaration
public static void LogError(object message, UnityEngine.Object context = null)
Parameters
Type | Name | Description |
---|---|---|
Object | message | String or object to be converted to string representation for display |
UnityEngine.Object | context | Object to which the message applies |
LogWarning(Object, UnityEngine.Object)
Log a warning message to the console
Declaration
public static void LogWarning(object message, UnityEngine.Object context = null)
Parameters
Type | Name | Description |
---|---|---|
Object | message | String or object to be converted to string representation for display |
UnityEngine.Object | context | Object to which the message applies |