com.g2forge.alexandria.log.ILogControl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-log-api Show documentation
Show all versions of ax-log-api Show documentation
Logging support and extensions.
package com.g2forge.alexandria.log;
import org.slf4j.event.Level;
import com.g2forge.alexandria.java.close.ICloseable;
public interface ILogControl {
public Level getLogLevel();
public void setLogLevel(Level level);
public default ICloseable tempLogLevel(Level level) {
final Level original = getLogLevel();
setLogLevel(level);
return () -> setLogLevel(original);
}
}