commonMain.dev.bluefalcon.Logger.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blue-falcon Show documentation
Show all versions of blue-falcon Show documentation
Bluetooth Multiplatform Library
package dev.bluefalcon
interface Logger {
fun error(message: String, cause: Throwable? = null)
fun warn(message: String, cause: Throwable? = null)
fun info(message: String, cause: Throwable? = null)
fun debug(message: String, cause: Throwable? = null)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy