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

io.ebean.codegen.LogAdapter Maven / Gradle / Ivy

There is a newer version: 4.2
Show newest version
package io.ebean.codegen;

import org.apache.maven.plugin.logging.Log;

public class LogAdapter {

  private final Log log;

  public LogAdapter(Log log) {
    this.log = log;
  }

  public void error(String message, Exception e) {
    log.error(message, e);
  }

  public void error(String message) {
    log.error(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy