Create an Appender and default its layout to LayoutSimple.
Append a message to the output.
Close this appender. This would be used for file, sockets, and such like.
Static method to return a mask for identifying the Appender. Each Appender class should have a unique fingerprint so that we can figure out which ones have been invoked for a given event. A bitmask is a simple an efficient way to do that.
Interface for all logging layout instances
Set the current layout to be that of the argument, or the generic layout where the argument is null
Return the current Layout
Return the current Level setting
Return the current Level setting
Return the mask used to identify this Appender. The mask is used to figure out whether an appender has already been invoked for a particular logger.
Return the name of this Appender.
Attach another appender to this one
Return the next appender in the list
Base class for all Appenders. These objects are responsible for emitting messages sent to a particular logger. There may be more than one appender attached to any logger. The actual message is constructed by another class known as an EventLayout.