Logger(Int64, LogType, Int32)

Logs the text representation of the specified 64-bit signed integer value.

Declaration
public static void Logger(long value, LogType logType, int logLevel)
Example
engine.Logger(-123456789890, LogType.Information, -1);
Result
Information|-1|ID0|Logger_Long_Test|-123456789890
Type
Name
Description

value

The value to write.

logType

Specifies the log type.

logLevel

Specifies the log level.

Last updated