KLogging
Deprecated
Use KLogger instead
Replace with
import io.github.oshai.kotlinlogging.KLogger
Content copied to clipboard
KLogger
Content copied to clipboard
A class with logging capabilities usage example:
class ClassWithLogging {
companion object: KLogging()
fun test() {
logger.info{"test ClassWithLogging"}
}
}
Content copied to clipboard