Logging DSL

This DSL allows you to configure logging levels. Setting levels with logging.level configuration properties will override the DSL setting.

Usage

class TestKotlinApplication : SpringFunkApplication {
    override fun dsl(): SpringDslContainer.() -> Unit = {
        logging {
            root(LogLevel.INFO)
            level<MyClass>(LogLevel.OFF)
            level("com.example.package", LogLevel.DEBUG)
        }
    }
}