commonMain.Call.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of khronicle-test-jvm Show documentation
Show all versions of khronicle-test-jvm Show documentation
Simple and robust Kotlin Multiplatform logging
The newest version!
package com.juul.khronicle.test
import com.juul.khronicle.LogLevel
import com.juul.khronicle.ReadMetadata
/** The arguments passed to [CallListLogger.log]. */
public data class Call(
val level: LogLevel,
val tag: String,
val message: String,
val throwable: Throwable?,
val metadata: ReadMetadata,
)