![JAR search and dependency download from the Maven repository](/logo.png)
name.remal.org.slf4j.Logger.kt Maven / Gradle / Ivy
package name.remal
import org.slf4j.Logger
fun Logger.trace(throwable: Throwable, msg: String? = null) = trace(msg ?: throwable.message, throwable)
fun Logger.debug(throwable: Throwable, msg: String? = null) = debug(msg ?: throwable.message, throwable)
fun Logger.info(throwable: Throwable, msg: String? = null) = info(msg ?: throwable.message, throwable)
fun Logger.warn(throwable: Throwable, msg: String? = null) = warn(msg ?: throwable.message, throwable)
fun Logger.error(throwable: Throwable, msg: String? = null) = error(msg ?: throwable.message, throwable)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy