net.elehack.gradle.science.MessageLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-science Show documentation
Show all versions of gradle-science Show documentation
Gradle tasks for scientific publication.
The newest version!
package net.elehack.gradle.science;
import org.slf4j.Logger;
enum MessageLevel {
WARN {
void print(Logger log, String msg) {
log.warn(msg);
}
},
ERROR {
void print(Logger log, String msg) {
log.error(msg);
}
},
INFO {
void print(Logger log, String msg) {
log.info(msg);
}
};
abstract void print(Logger log, String msg);
}