Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 271 Bytes

Logging.md

File metadata and controls

17 lines (12 loc) · 271 Bytes

Logging

Automate Everything is using SLF4J for logging

Usage

import org.slf4j.LoggerFactory

object Example {
    private val logger = LoggerFactory.getLogger(Main::class.java)

    fun logSomething() {
        logger.info("Message to log")
    }
}