Hello Touchlab, I integrated Kermit and CrashkiOS ...
# touchlab-tools
m
Hello Touchlab, I integrated Kermit and CrashkiOS binded with Crashlytics. Now I would like to know if it is possible to see the crashes in the local logs? I am triggering one with
CrashlyticsKotlin.sendHandledException(Exception("Some exception"))
-> Not displayed And one with a classical
throw RuntimeException("Test Crash")
which is displayed but without the symbols?. The normal Kermit logger is logging correctly. this is the setup:
Copy code
object MyLogger : Logger(
    config = loggerConfigInit(
        platformLogWriter(),
        minSeverity = <http://Severity.Info|Severity.Info>
    ),
    tag = "MyAppTag"
)
Button click:
Copy code
Button(onClick = {
                MyLogger.i { "Hello" }
                CrashlyticsKotlin.sendHandledException(Exception("Some exception"))
                showContent = !showContent
                throw RuntimeException("Test Crash")
            })
Logs:
Copy code
🟢 (MyAppTag) Hello
Uncaught Kotlin exception: kotlin.RuntimeException: Test Crash
    at 0   ComposeApp                          0x104c4a217
In CrashLytics:
Copy code
Fatal Exception: kotlin.RuntimeException
Test Crash
0
ComposeApp
App.kt - Ligne 30
<init>$lambda$5$lambda$4 + 30