com.lsdconsulting.generatorui.config.logger.Logger.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lsd-distributed-generator-ui-service Show documentation
Show all versions of lsd-distributed-generator-ui-service Show documentation
This is the graphical interface providing the LSD generation functionality.
package com.lsdconsulting.generatorui.config.logger
import org.slf4j.Logger
import org.slf4j.LoggerFactory
inline fun T.log(): Logger {
return LoggerFactory.getLogger(T::class.java)
}