Skip to content

Releases: wakingrufus/spring-funk

v0.3.0

09 Aug 18:50
f8f5424
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.0...v0.3.0

v0.2.0

05 Aug 16:58
7904bd9
Compare
Choose a tag to compare

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

Release v0.1.0

12 Jul 18:10
4f4985c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.12...v0.1.0

Release v0.0.12

03 Jul 15:49
74bc24b
Compare
Choose a tag to compare

What's Changed

  • wait longer and retry more for maven central publish by @wakingrufus in #53

Full Changelog: v0.0.11...v0.0.12