Logger(String, LogType, Int32)

Logs the specified string value.

Declaration
public static void Logger(string message, LogType logType, int logLevel)
Example
engine.Logger("An unexpected error occurred!", LogType.Error, 5);
Result
Error|5|ID0|Logger_String_Test|An unexpected error occurred!
Type
Name
Description

message

The message to log.

logType

Specifies the log type.

logLevel

Specifies the log level.

Last updated