github wakingrufus/spring-funk v0.2.0

latest releases: v0.11.0, v0.10.0, v0.9.0...
13 months ago

What's Changed

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)
        }
    }
}

All Changes

New Contributors

Full Changelog: v0.1.0...v0.2.0

Don't miss a new spring-funk release

NewReleases is sending notifications on new releases.