File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed
Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ repositories {
88}
99
1010dependencies {
11+ implementation(libs.kotlin.logging)
1112 implementation(libs.kotlinx.coroutines.core)
1213
13- // for tapSystemOut
14- testImplementation(libs.system.lambda)
15- testImplementation(libs.kotest.runner.junit5)
1614 testImplementation(libs.kotest.assertions.table)
15+ testImplementation(libs.kotest.runner.junit5)
16+ testImplementation(libs.system.lambda)
1717 testRuntimeOnly(libs.logback.classic)
1818}
1919
Original file line number Diff line number Diff line change 11[versions ]
22kotest = " 6.0.4"
33kotlin = " 2.2.21"
4+ kotlin-logging = " 7.0.3"
45kotlinx-coroutines = " 1.10.2"
56kover = " 0.9.3"
67logback = " 1.5.20"
@@ -9,6 +10,7 @@ system-lambda = "1.2.1"
910[libraries ]
1011kotest-assertions-table = { module = " io.kotest:kotest-assertions-table" , version.ref = " kotest" }
1112kotest-runner-junit5 = { module = " io.kotest:kotest-runner-junit5" , version.ref = " kotest" }
13+ kotlin-logging = { module = " io.github.oshai:kotlin-logging-jvm" , version.ref = " kotlin-logging" }
1214kotlinx-coroutines-core = { module = " org.jetbrains.kotlinx:kotlinx-coroutines-core" , version.ref = " kotlinx-coroutines" }
1315logback-classic = { module = " ch.qos.logback:logback-classic" , version.ref = " logback" }
1416system-lambda = { module = " com.github.stefanbirkner:system-lambda" , version.ref = " system-lambda" }
Original file line number Diff line number Diff line change 1+ <configuration >
2+ <statusListener class =" ch.qos.logback.core.status.NopStatusListener" />
3+ <appender name =" STDOUT" class =" ch.qos.logback.core.ConsoleAppender" >
4+ <encoder >
5+ <pattern >%d{HH:mm:ss.SSS} %-5level %msg%n</pattern >
6+ </encoder >
7+ </appender >
8+ <appender name =" STDOUT_DETAILED" class =" ch.qos.logback.core.ConsoleAppender" >
9+ <encoder >
10+ <pattern >%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern >
11+ </encoder >
12+ </appender >
13+
14+ <root level =" info" >
15+ <appender-ref ref =" STDOUT" />
16+ </root >
17+ </configuration >
You can’t perform that action at this time.
0 commit comments