We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ff0b7d commit dafab36Copy full SHA for dafab36
1 file changed
src/darwinTest/kotlin/io/github/oshai/kotlinlogging/Issue588Test.kt
@@ -0,0 +1,14 @@
1
+package io.github.oshai.kotlinlogging
2
+
3
+import platform.Foundation.NSUUID
4
+import kotlin.test.Test
5
6
+class Issue588Test {
7
+ @Test
8
+ fun testHistoricalLogging() {
9
+ val uuid = NSUUID().UUIDString
10
+ val logger = KotlinLogging.logger("issue588.repro")
11
+ logger.info { "Test message execution $uuid" }
12
+ println("Logged message with UUID: $uuid")
13
+ }
14
+}
0 commit comments