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

core.support.logger.LogObject Maven / Gradle / Ivy

package core.support.logger;

import org.apache.logging.log4j.Level;

public class LogObject {

	public String value;
	public Level priority;

	public LogObject() {
	}

	public LogObject(String value, Level priority) {
		this.value = value;
		this.priority = priority;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy