Methods Summary |
---|
public void | activateOptions()Does nothing.
|
public void | append(org.apache.log4j.spi.LoggingEvent event)This method is called by the {@link AppenderSkeleton#doAppend}
method.
//System.out.println("---Vector appender called with message ["+event.getRenderedMessage()+"].");
//System.out.flush();
try {
Thread.currentThread().sleep(100);
} catch(Exception e) {
}
vector.addElement(event);
|
public synchronized void | close()
if(this.closed)
return;
this.closed = true;
|
public java.util.Vector | getVector()
return vector;
|
public boolean | isClosed()
return closed;
|
public boolean | requiresLayout()
return false;
|