com.justai.jaicf.helpers.logging.WithLogger.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
JAICF-Kotlin Core component. Provides DSL, Tests API and multiple implementable interfaces.
The newest version!
package com.justai.jaicf.helpers.logging
import org.slf4j.Logger
import org.slf4j.LoggerFactory
interface WithLogger {
val logger: Logger
get() = LoggerFactory.getLogger(javaClass)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy