Skip to content

Commit 0e96440

Browse files
Upgraded SLF4J in eponymous integration module to 1.7.32 and updated deprecated Gradle dependency declarations (#3088)
1 parent c51f795 commit 0e96440

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

integration/kotlinx-coroutines-slf4j/build.gradle.kts

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
*/
44

55
dependencies {
6-
compile("org.slf4j:slf4j-api:1.7.25")
7-
testCompile("io.github.microutils:kotlin-logging:1.5.4")
8-
testRuntime("ch.qos.logback:logback-classic:1.2.3")
9-
testRuntime("ch.qos.logback:logback-core:1.2.3")
6+
implementation("org.slf4j:slf4j-api:1.7.32")
7+
testImplementation("io.github.microutils:kotlin-logging:2.1.0")
8+
testRuntimeOnly("ch.qos.logback:logback-classic:1.2.7")
9+
testRuntimeOnly("ch.qos.logback:logback-core:1.2.7")
1010
}
1111

1212
externalDocumentationLink(

integration/kotlinx-coroutines-slf4j/src/MDCContext.kt

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public class MDCContext(
4343
/**
4444
* The value of [MDC] context map.
4545
*/
46+
@Suppress("MemberVisibilityCanBePrivate")
4647
public val contextMap: MDCContextMap = MDC.getCopyOfContextMap()
4748
) : ThreadContextElement<MDCContextMap>, AbstractCoroutineContextElement(Key) {
4849
/**

0 commit comments

Comments
 (0)