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

dev.monosoul.jooq.util.GetCodegenLogging.kt Maven / Gradle / Ivy

There is a newer version: 6.1.14
Show newest version
package dev.monosoul.jooq.util

import org.gradle.api.logging.Logger
import org.jooq.meta.jaxb.Logging

// covered by tests in artifact-tests module
fun Logger.getCodegenLogging(): Logging =
    when {
        isQuietEnabled && !isWarnEnabled -> Logging.ERROR
        isLifecycleEnabled && !isInfoEnabled -> Logging.ERROR
        isWarnEnabled && !isInfoEnabled -> Logging.WARN
        else -> Logging.DEBUG
    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy