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

io.github.oliviercailloux.javagrade.utils.StdOutErrLogger Maven / Gradle / Ivy

The newest version!
package io.github.oliviercailloux.javagrade.utils;

public interface StdOutErrLogger extends AutoCloseable {
  public static StdOutErrLogger redirect() {
    final StdOutErrLoggerImpl logger = new StdOutErrLoggerImpl();
    logger.start();
    return logger;
  }

  @Override
  public void close();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy