main.misk.logging.Mdc.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of misk-api Show documentation
Show all versions of misk-api Show documentation
Open source application container in Kotlin
package misk.logging
interface Mdc {
fun put(key: String, value: String?)
fun get(key: String): String?
fun clear()
}