Logger(String, Object, Object, LogType, Int32)
Logs the text representation of the specified objects using the specified format information.
public static void Logger(string format, object arg0, object arg1, LogType logType, int logLevel)
var dt = new DateTime(1, 1, 1, 13, 24, 21);
engine.Logger("At {0:t}, the temperature is {1}°C.", dt, 21.3, LogType.Always, 1);
Always|1|ID0|Logger_2_Arg_Test|At 1:24 PM, the temperature is 21.3°C.
PreviousLogger(String, Object, LogType, Int32)NextLogger(String, Object, Object, Object, LogType, Int32)
Last updated