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

com.mayabot.nlp.fasttext.utils.LogUtils.kt Maven / Gradle / Ivy

package com.mayabot.nlp.fasttext.utils

private var doLog = true

fun disableLog() {
    doLog = false
}

fun enableLog() {
    doLog = true
}

fun logger(s: Any) {
    if (doLog) print(s)
}

fun loggerln(s: Any) {
    if (doLog) println(s)
}

fun loggerln() {
    if (doLog) println()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy