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

jvmMain.org.hisp.dhis.rules.Logger.kt Maven / Gradle / Ivy

package org.hisp.dhis.rules

actual fun createLogger(className: String): Logger{
    val javaLogger = java.util.logging.Logger.getLogger(className)
    return Logger({message -> javaLogger.severe(message)}, {message: String -> javaLogger.fine(message)})
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy