dk.nstack.kotlin.plugin.Log.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of translation Show documentation
Show all versions of translation Show documentation
Gradle extensions for NStack.io translations
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)
}
}