com.janosgats.logging.flexibleappender.loglineoutput.AbstractLogLineOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexible-appender Show documentation
Show all versions of flexible-appender Show documentation
A convenient and customizable appender library for log4j.
package com.janosgats.logging.flexibleappender.loglineoutput;
/**
* Feel free to override one of these LogLineOutputs to create your own!
*/
public abstract class AbstractLogLineOutput {
public abstract void doOutputLogLine(String logLine);
}