クラスの概要 |
AbstractTargetFactory |
AbstractTargetFactory class.
|
AsyncLogTargetFactory |
AsyncLogTargetFactory class.
|
DatagramTargetFactory |
DatagramTargetFactory
This factory creates LogTargets with a wrapped DatagramOutputTarget around it:
<datagram-target id="target-id">
<address hostname="hostname" port="4455" />
<format type="extended">
%7.7{priority} %23.23{time:yyyy-MM-dd HH:mm:ss:SSS} [%25.25{category}] : %{message}\n%{throwable}
</format>
</datagram-target>
This factory creates a DatagramOutputTarget object which will
sends datagrams to the specified address. |
FileTargetFactory |
FileTargetFactory class.
|
FormatterFactory |
Factory for Formatter-s. |
JDBCTargetFactory |
Factory for JDBCLogTarget-s. |
JMSTargetFactory |
Factory for JMS LogTarget-s. |
PriorityFilterTargetFactory |
PriorityFilterTargetFactory class.
|
ServletTargetFactory |
ServletTargetFactory class.
|
SocketTargetFactory |
SocketTargetFactory
This factory creates LogTargets with a wrapped SocketOutputTarget around it:
<socket-target id="target-id">
<address hostname="hostname" port="4455" />
</socket-target>
This factory creates a SocketOutputTarget object which will
TCP/IP socket to communicate with the server. |
StreamTargetFactory |
TargetFactory for org.apache.log.output.io.StreamTarget
This factory is able to create different StreamTargets according to the following
configuration syntax :
<stream id="foo">
<stream>stream-context-name</stream>
<format type="raw|pattern|extended">pattern to be used if needed</format>
</stream>
The "stream-context-name" is the name of an java.io.OutputStream that
is fetched in the context. |