Skip to content

Commit dafab36

Browse files
committed
test
1 parent 4ff0b7d commit dafab36

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)