All Downloads are FREE. Search and download functionalities are using the official Maven repository.

util.Logger.kt Maven / Gradle / Ivy

package com.amplitude.util

import org.slf4j.Logger
import org.slf4j.LoggerFactory

fun logger(name: String): Logger = LoggerFactory.getLogger(name)

fun  R.logger(): Lazy {
    return lazy { logger(this::class.java.name.substringBefore("\$Companion")) }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy