commonMain.io.realm.log.RealmLogger.kt Maven / Gradle / Ivy
package io.realm.log
import io.realm.RealmConfiguration
/**
* Interface describing a logger implementation.
*
* @see RealmConfiguration.Builder.log
*/
interface RealmLogger {
/**
* Tag that can be used to describe the output.
*/
val tag: String
/**
* Log an event.
*/
fun log(level: LogLevel, throwable: Throwable?, message: String?, vararg args: Any?)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy