Kermit icon indicating copy to clipboard operation
Kermit copied to clipboard

Kermit by Touchlab is a Kotlin Multiplatform centralized logging utility.

Results 72 Kermit issues
Sort by recently updated
recently updated
newest added

## Description I can't seem to find an example or means of getting the kermit log stripping plugin to function when upgrading to 2.0.0-RC4. The feature is mentioned on the...

Temporarily [removed](https://github.com/touchlab/Kermit/pull/372/commits/8db5cb2e09af34c67e118eb41c341373aebfe050) the test from `sample-production` to avoid PR failures

bug

In the past, I was able to use the below in my iOS codebase: ```swift logger.i(message: { "Application init" }) ``` but with the latest version it complains that I...

https://github.com/touchlab/Kermit/blob/8e20fa506771c5078b55c0a32ef93e2889aba10e/kermit-core/src/commonMain/kotlin/co/touchlab/kermit/CommonWriter.kt#L19 At now CommonWriter's formatter is private, which make it impossible to use custom formatter when inheriting writer. See below ``` class MyWriter() : CommonWriter(MyFormatter()) { override fun log(severity: Severity,...

review and update kermit docs for 2.0 Release

The docs for iOS reference setting up the exception hook as follows: ``` setupCrashlyticsExceptionHook(Logger) ``` However, it appears on the latest releases, this is no longer the correct call. It...

Using Log.d(xx) to output logs on my Android device does not show up on the console. I tried to solve this problem and found that I need to modify the...

By default, the LogcatWriter is used on Android. This will crash on Android unit tests, since the android.util.Log class is not mocked. The workaround is to setup the CommonLogger in...