Skip to content

Releases: kyyana/kogger

Release list

1.0.1

Choose a tag to compare

@thelipe7 thelipe7 released this 03 Jul 02:12

Installation

Available on Maven Central. Add the dependency to your Kotlin/Native source set:

repositories {
    mavenCentral()
}

kotlin {
    sourceSets {
        nativeMain {
            dependencies {
                implementation("io.github.kyyana:kogger:1.0.1")
            }
        }
    }
}

Changelog

  • fix: RollingFileWriter now archives a leftover latest.log on every startup, even when it's from the same day, instead of only when the day changed. (c716d22)

1.0.0

Choose a tag to compare

@thelipe7 thelipe7 released this 29 Jun 17:21

Installation

Available on Maven Central. Add the dependency to your Kotlin/Native source set:

repositories {
    mavenCentral()
}

kotlin {
    sourceSets {
        nativeMain {
            dependencies {
                implementation("io.github.kyyana:kogger:1.0.0")
            }
        }
    }
}