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

dk.nstack.kotlin.plugin.Log.groovy Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package dk.nstack.kotlin.plugin

class Log {
    static void info(String string) {
        println(string)
    }

    static void debug(String string) {
        println(string)
    }

    static void error(String string) {
        println(string)
    }

    static void verbose(String string) {
        println(string)
    }

    static void warn(String string) {
        println(string)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy