Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 261 Bytes

File metadata and controls

19 lines (13 loc) · 261 Bytes

Usage

Overview

Library is pre-configured in the app module.

Example

private val logger = KotlinLogging.logger {}

class Application {

    @JvmStatic
    fun main(args: Array<String>) {
        logger.info { "Hello World!" }
    }
}