io.github.oshai » kotlin-logging-iosx64 Central (8) VersionVulnerabilitiesRepositoryUsagesDate 4.0.x 4.0.0-beta-2 Central 0 Feb 01, 2023 4.0.0-beta-1 Central 0 Jan 31, 2023 3.0.x 3.0.5 Central 0 Feb 01, 2023 3.0.4 Central 10 Nov 02, 2022 3.0.3 Central 0 Oct 29, 2022...
These are my dependencies in build.gradle.kts: implementation("io.github.microutils:kotlin-logging:1.7.8") implementation("org.slf4j:slf4j-api:1.7.29") Then in module-info.java: requires kotlin.logging; All the rest works fine with the J...
I also build a version of kotlin-logging locally whereClass.forName("io.github.oshai.kotlinlogging.logback.internal.LogbackLoggerFactory")is used instead of referencing the object directly, but that still didn't help. Probably, as mentioned in the page you linked, Graal is also processing this ...
implementation 'io.github.microutils:kotlin-logging-jvm:2.0.11' Since kotlin-logging is a wrapper for slf4j, which itself is a wrapper for different logging backends, we’re going to need a configuration. In our case, we’ll be using logback, and we’ll add it using either Maven: <depe...
Starting simply, we progressively increased complexity in a series of attempts to improve efficiency and reduce boilerplate, taking a look at Kotlin companion objects, extension methods, and delegated properties. As always, these examples are available in full over on GitHub.2...
通过查看slf4j的Logger接口,您可以看到它具有用于所有级别的isLevelEnabled(),但没有setter。因此,设置...
Over 2.5k stars and complete KMP ready https://github.com/oshai/kotlin-logging
repositories { maven { url 'https://jitpack.io' } } dependencies { implementation 'com.github.sahlone:klogging:$version' } Usage Create Logger object val logger = createContextualLogger() Log statement examples. Please look into test cases for more examples. logger.debug(TracingContext(), ...
https://arkivanov.github.io/MVIKotlin Sample project The sample project is a todo list with details view. There are two implementations of the same sample, one using Reaktive library and another one using coroutines. Each variant has Android, iOS and Web browser apps. This samples also demons...
compile 'com.github.shafirov.klogging:klogging.common:1.2.10' compile 'com.github.shafirov.klogging:klogging.js:1.2.10' compile 'com.github.shafirov.klogging:klogging.jvm:1.2.10' Versions will be updated with same kotlin version Usage ...