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

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

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

import java.util.ArrayList;

import com.danidemi.jlubricant.slf4j.Level;

public class Composite implements MessageToLogLevelPolicy {

	private ArrayList logs;
	
	@Override
	public Level forMessage(String logmessage) {
		for (MessageToLogLevelPolicy messageToLogLevelPolicy : logs) {
			Level forMessage = messageToLogLevelPolicy.forMessage(logmessage);
			if(forMessage != null) return forMessage;
		}
		return null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy