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

org.jetbrains.kotlinx.jupyter.config.DefaultKernelLoggerFactory.kt Maven / Gradle / Ivy

Go to download

Implementation of REPL compiler and preprocessor for Jupyter dialect of Kotlin (IDE-compatible)

There is a newer version: 0.12.0-333
Show newest version
package org.jetbrains.kotlinx.jupyter.config

import org.jetbrains.kotlinx.jupyter.api.KernelLoggerFactory
import org.slf4j.Logger
import org.slf4j.LoggerFactory

object DefaultKernelLoggerFactory : KernelLoggerFactory {
    override fun getLogger(category: String): Logger {
        return LoggerFactory.getLogger(category)
    }

    override fun getLogger(clazz: Class<*>): Logger {
        return LoggerFactory.getLogger(clazz)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy