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

org.fisco.bcos.web3j.codegen.LogGenerationReporter Maven / Gradle / Ivy

package org.fisco.bcos.web3j.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);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy