Logger(Object, LogType, Int32)

Logs the text representation of the specified object.

Declaration
public static void Logger(object value, LogType logType, int logLevel)
Example
var dt = (object)new DateTime(1, 1, 1, 9, 52, 45);

engine.Logger(dt, LogType.Information, -1);
Result
Information|-1|ID0|Logger_Object_Test|01/01/0001 9:52:45 AM
Type
Name
Description

value

The value to write.

logType

Specifies the log type.

logLevel

Specifies the log level.

Last updated