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

net.sf.exlp.event.handler.EhDebug Maven / Gradle / Ivy

There is a newer version: 0.1.17
Show newest version
package net.sf.exlp.event.handler;

import net.sf.exlp.event.AbstractEventHandler;
import net.sf.exlp.event.LogEvent;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class EhDebug extends AbstractEventHandler 
{
	final static Logger logger = LoggerFactory.getLogger(EhDebug.class);
	
	static final long serialVersionUID=1;
	
	public EhDebug()
	{

	}

	public boolean handleEvent(LogEvent event)
	{
		count();
		event.debug();
		return true;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy