Skip to content

v0.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 05 Aug 16:58
· 5 commits to main since this release
7904bd9

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