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

com.danidemi.jlubricant.slf4j.utils.Default Maven / Gradle / Ivy

There is a newer version: 0.0.15
Show newest version
package com.danidemi.jlubricant.slf4j.utils;

import com.danidemi.jlubricant.slf4j.Level;

public class Default implements MessageToLogLevelPolicy {

	private Level defaultLevel;
	
	public Default(Level defaultLevel) {
		super();
		this.defaultLevel = defaultLevel;
	}

	@Override
	public Level forMessage(String logmessage) {
		return defaultLevel;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy