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

com.g2forge.alexandria.log.ILogControl Maven / Gradle / Ivy

There is a newer version: 0.0.18
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy