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

com.toomuchcoding.uptodate.LoggerProxy.groovy Maven / Gradle / Ivy

package com.toomuchcoding.uptodate

import org.slf4j.Logger

class LoggerProxy {

    void lifecycle(Logger logger, String message) {
        logger.warn(message)
    }

    void info(Logger logger, String message) {
        logger.info(message)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy