public class FooAppender extends AppenderBase<ILoggingEvent>
{
protected void append(ILoggingEvent eventObject)
{
}
public void start()
{
super.start();
System.out.println("############################################################");
System.out.println("############################################################");
System.out.println(""+getName()+" started!");
System.out.println("############################################################");
System.out.println("############################################################");
}
public void stop()
{
super.stop();
System.out.println("############################################################");
System.out.println("############################################################");
System.out.println(""+getName()+" stopped!");
System.out.println("############################################################");
System.out.println("############################################################");
}
}