Method Log
Log(string)
Logs general information.
Declaration
[Conditional("DEBUG")]
public static void Log(string msg)
Parameters
| Type | Name | Description |
|---|---|---|
| string | msg | The message to display. |
Log(object)
Logs general information.
Declaration
[Conditional("DEBUG")]
public static void Log(object msg)
Parameters
| Type | Name | Description |
|---|---|---|
| object | msg | The message object to display. |
Log(string, params object[])
Logs general information.
Declaration
[Conditional("DEBUG")]
public static void Log(string msg, params object[] attrs)
Parameters
| Type | Name | Description |
|---|---|---|
| string | msg | The message to display. |
| object[] | attrs | The objects formatted in the message. |