Class Debug
Syntax
public static class Debug : object
Methods
Declaration
public static FixedString4096 FormatGeneric(string format, object[] args)
Parameters
Returns
| Type |
Description |
| FixedString4096 |
|
Log(Object)
Writes an object's ToString to stdout.
Declaration
public static void Log(object logObject)
Parameters
| Type |
Name |
Description |
| Object |
logObject |
|
LogAlways(Object)
Writes an object's ToString to stdout.
Declaration
public static void LogAlways(object logObject)
Parameters
| Type |
Name |
Description |
| Object |
logObject |
|
LogError(Object)
Writes an object's ToString to stdout as a error.
Declaration
public static void LogError(object message)
Parameters
| Type |
Name |
Description |
| Object |
message |
|
LogException(Exception)
Writes a formatted string to stdout.
Declaration
public static void LogException(Exception exception)
Parameters
| Type |
Name |
Description |
| Exception |
exception |
|
LogExceptionAlways(Exception)
Writes a formatted string to stdout.
Declaration
public static void LogExceptionAlways(Exception exception)
Parameters
| Type |
Name |
Description |
| Exception |
exception |
|
Writes a formatted string to stdout.
Declaration
public static void LogFormat(string format, params object[] args)
Parameters
Writes a formatted string to stdout.
Declaration
public static void LogFormatAlways(string format, params object[] args)
Parameters
Declaration
public static void LogFormatRelease(string format, params object[] args)
Parameters
Declaration
public static void LogFormatReleaseAlways(string format, params object[] args)
Parameters
LogRelease(FixedString4096)
Declaration
public static void LogRelease(FixedString4096 log)
Parameters
| Type |
Name |
Description |
| FixedString4096 |
log |
|
LogRelease(Object)
Declaration
public static void LogRelease(object logObject)
Parameters
| Type |
Name |
Description |
| Object |
logObject |
|
LogReleaseAlways(FixedString4096)
Declaration
public static void LogReleaseAlways(FixedString4096 log)
Parameters
| Type |
Name |
Description |
| FixedString4096 |
log |
|
LogReleaseAlways(Object)
Declaration
public static void LogReleaseAlways(object logObject)
Parameters
| Type |
Name |
Description |
| Object |
logObject |
|
LogReleaseException(Exception)
Declaration
public static void LogReleaseException(Exception exception)
Parameters
| Type |
Name |
Description |
| Exception |
exception |
|
LogReleaseExceptionAlways(Exception)
Declaration
public static void LogReleaseExceptionAlways(Exception exception)
Parameters
| Type |
Name |
Description |
| Exception |
exception |
|
LogWarning(Object)
Writes an object's ToString to stdout as a warning.
Declaration
public static void LogWarning(object message)
Parameters
| Type |
Name |
Description |
| Object |
message |
|