Logger(Double, LogType, Int32)

Logs the text representation of the specified double-precision floating-point value.

Declaration
public static void Logger(double value, LogType logType, int logLevel)
Example
engine.Logger(1234.45d, LogType.Information, -1);
Result
Information|-1|ID0|Logger_Double_Test|1234.45
Type
Name
Description

value

The value to write.

logType

Specifies the log type.

logLevel

Specifies the log level.

Last updated