com.justai.jaicf.helpers.logging.Log.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 com.justai.jaicf.context.DefaultActionContext
import org.slf4j.LoggerFactory
val DefaultActionContext.logger
get() = LoggerFactory.getLogger(this.context.dialogContext.currentState)
fun DefaultActionContext.log(msg: String) = logger.info(msg)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy