(Logger):warning
Log a warning 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:warning("Hello World")
Logger:warning("Hello", "World")
Logger:warning("Hello", 5, "World")
Logger:warning(nil, 1, "", true, false)
Logger:warning({ key = "value", ["foo"] = "bar" }) -- by default, max depth is 3, see Logger.inspect for larger depths