fun info(msg: String): Unit
Just like Logger.info
msg - Message to log
msg
fun info(msg: () -> Any): Unit
Executes given lambda and logs its result with Logger.info. Allows lazy evaluation of logging message.
msg - Lambda to execute