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

com.spun.util.logger.Markers Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package com.spun.util.logger;

public class Markers implements AutoCloseable
{
  private SimpleLoggerInstance log;
  private String               text;
  public Markers(SimpleLoggerInstance log, String text)
  {
    this.log = log;
    this.text = text;
    log.markerIn(text);
  }
  @Override
  public void close()
  {
    log.markerOut(text);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy