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

com.avaje.ebean.enhance.agent.SysoutMessageOutput Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebean.enhance.agent;

import java.io.PrintStream;

/**
 * MessageOutput typically used with System.out.
 */
public class SysoutMessageOutput implements MessageOutput {

  private final PrintStream writer;

  public SysoutMessageOutput(PrintStream writer) {
    this.writer = writer;
  }

  @Override
  public void println(String message) {
    writer.println(message);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy