cc.youchain.codegen.LogGenerationReporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codegen Show documentation
Show all versions of codegen Show documentation
YOUChain Common library in JAVA.
package cc.youchain.codegen;
import org.slf4j.Logger;
/**
* A reporter generation that outputs messages using a logger instance.
*/
class LogGenerationReporter implements GenerationReporter {
private final Logger logger;
public LogGenerationReporter(Logger logger) {
this.logger = logger;
}
@Override
public void report(String msg) {
logger.warn(msg);
}
}