dmitry.petrov
inline fun Logger.debug(msg: () -> String) { if (logger.isDebugEnabled) logger.debug(msg()) } ... logger.debug { "Blah blah blah" }