(Logger):info
Log an info level message.
Synopsis
Parameters
message...ANY- The varargs of the message passed to all the sinks. If you pass in a table, it will only print to a maximum depth of 3 tables.
Returns
Nothing.
Examples
Logger:info("Hello World")
Logger:info("Hello", "World")
Logger:info("Hello", 5, "World")
Logger:info(nil, 1, "", true, false)
Logger:info({ key = "value", ["foo"] = "bar" }) -- by default, max depth is 3, see Logger.inspect for larger depths