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