Uses of Interface
org.apache.log.LogTarget

Packages that use LogTarget
org.apache.avalon.excalibur.logger   
org.apache.avalon.excalibur.logger.factory   
org.apache.avalon.framework.logger Abstract logging framework supporting pluggable logging mechanisms including LogKit, Log4J and the JDK 1.4 logging infrastructure. 
org.apache.log Avalon LogKit is the logging framework used throughout the Avalon project. 
org.apache.log.output This package contains some useful output destination LogTargets. 
org.apache.log.output.db Database output destination LogTargets. 
org.apache.log.output.io Stream anf file based output destination LogTargets. 
org.apache.log.output.io.rotate Log file rotation policies. 
org.apache.log.output.jms JMS based output destination LogTargets. 
org.apache.log.output.lf5 LogFactor5 (Swing GUI) based LogTarget. 
org.apache.log.output.net Datagram, Socket and SMTP output destination LogTargets. 
 

Uses of LogTarget in org.apache.avalon.excalibur.logger
 

Methods in org.apache.avalon.excalibur.logger that return LogTarget
 LogTarget LogTargetFactory.createTarget(Configuration configuration)
          Create a LogTarget based on a Configuration
 LogTarget DefaultLogTargetManager.getLogTarget(java.lang.String id)
          Retrieves a LogTarget for an ID.
 LogTarget LogTargetManager.getLogTarget(java.lang.String targetId)
          Find a logger based on a category name.
 

Uses of LogTarget in org.apache.avalon.excalibur.logger.factory
 

Methods in org.apache.avalon.excalibur.logger.factory that return LogTarget
 LogTarget PriorityFilterTargetFactory.createTarget(Configuration configuration)
          create a LogTarget based on a Configuration
 LogTarget StreamTargetFactory.createTarget(Configuration configuration)
          Create a LogTarget based on a Configuration
 LogTarget FileTargetFactory.createTarget(Configuration configuration)
          Create a LogTarget based on a Configuration
protected  LogTarget FileTargetFactory.createTarget(java.io.File file, Configuration configuration)
           
 LogTarget DatagramTargetFactory.createTarget(Configuration conf)
          Create a LogTarget based on a Configuration
 LogTarget ConsoleTargetFactory.createTarget(Configuration configuration)
          Create a LogTarget based on a Configuration
 LogTarget SocketTargetFactory.createTarget(Configuration conf)
          Creates a log target based on Configuration
 LogTarget SMTPTargetFactory.createTarget(Configuration config)
          Creates an SMTPOutputLogTarget based on a Configuration
 LogTarget AsyncLogTargetFactory.createTarget(Configuration configuration)
          create a LogTarget based on a Configuration
 LogTarget ServletTargetFactory.createTarget(Configuration configuration)
          create a LogTarget based on a Configuration
 LogTarget JMSTargetFactory.createTarget(Configuration configuration)
           
 LogTarget LF5TargetFactory.createTarget(Configuration configuration)
           
 LogTarget JDBCTargetFactory.createTarget(Configuration configuration)
           
 

Uses of LogTarget in org.apache.avalon.framework.logger
 

Classes in org.apache.avalon.framework.logger that implement LogTarget
 class LogKit2AvalonLoggerAdapter
          A basic adapter that adapts an Avalon Logger to a Logkit Logger.
 

Uses of LogTarget in org.apache.log
 

Methods in org.apache.log with parameters of type LogTarget
 void Logger.setLogTargets(LogTarget[] logTargets)
          Set the log targets for this logger.
 void Hierarchy.setDefaultLogTarget(LogTarget target)
          Set the default log target for hierarchy.
 void Hierarchy.setDefaultLogTargets(LogTarget[] targets)
          Set the default log targets for this hierarchy.
 

Uses of LogTarget in org.apache.log.output
 

Classes in org.apache.log.output that implement LogTarget
 class AbstractOutputTarget
          Abstract output target.
 class AbstractTarget
          Abstract target.
 class AbstractWrappingTarget
          Abstract base class for targets that wrap other targets.
 class AsyncLogTarget
          An asynchronous LogTarget that sends entries on in another thread.
 class MemoryTarget
          Output LogEvents into an buffer in memory.
 class NullOutputLogTarget
          A output target that does nothing.
 class PriorityFilteringTarget
          This is a priority filtering target that forwards only requests to other (wrapped) targets that have the same or a higher priority.
 class ServletOutputLogTarget
          Generic logging interface.
 

Methods in org.apache.log.output that return LogTarget
protected  LogTarget AbstractWrappingTarget.getLogTarget()
          Return the target for subclasses
 

Methods in org.apache.log.output with parameters of type LogTarget
 void PriorityFilteringTarget.addTarget(LogTarget target)
          Add a new target to output chain.
 

Constructors in org.apache.log.output with parameters of type LogTarget
AbstractWrappingTarget(LogTarget logTarget, boolean closeWrappedTarget)
          Creation of a new wrapping log target.
AbstractWrappingTarget(LogTarget logTarget)
          Creation of a new wrapping log target.
MemoryTarget(LogTarget target, int size, Priority threshold)
          Creation of a new instance of the memory target.
AsyncLogTarget(LogTarget logTarget)
          Creation of a new async log target.
AsyncLogTarget(LogTarget logTarget, int queueSize)
          Creation of a new async log target.
AsyncLogTarget(LogTarget logTarget, boolean closeTarget)
          Creation of a new async log target.
AsyncLogTarget(LogTarget logTarget, int queueSize, boolean closeTarget)
          Creation of a new async log target.
 

Uses of LogTarget in org.apache.log.output.db
 

Classes in org.apache.log.output.db that implement LogTarget
 class AbstractJDBCTarget
          Abstract JDBC target.
 class DefaultJDBCTarget
          The basic DB target for configurable output formats.
 class NormalizedJDBCTarget
          JDBC target that writes to normalized tables.
 

Uses of LogTarget in org.apache.log.output.io
 

Classes in org.apache.log.output.io that implement LogTarget
 class FileTarget
          A basic target that writes to a File.
 class SafeFileTarget
          A target that will open and close a file for each logevent.
 class StreamTarget
          A basic target that writes to an OutputStream.
 class WriterTarget
          This target outputs to a writer.
 

Uses of LogTarget in org.apache.log.output.io.rotate
 

Classes in org.apache.log.output.io.rotate that implement LogTarget
 class RotatingFileTarget
          This is a basic Output log target that writes to rotating files.
 

Uses of LogTarget in org.apache.log.output.jms
 

Classes in org.apache.log.output.jms that implement LogTarget
 class AbstractJMSTarget
          A target that writes to a JMS Topic.
 class JMSQueueTarget
          A target that writes to a JMS Queue.
 class JMSTopicTarget
          A target that writes to a JMS Topic.
 

Uses of LogTarget in org.apache.log.output.lf5
 

Classes in org.apache.log.output.lf5 that implement LogTarget
 class LF5LogTarget
          A LogTarget that displays log events using the LogFactor5 Swing GUI.
 

Uses of LogTarget in org.apache.log.output.net
 

Classes in org.apache.log.output.net that implement LogTarget
 class DatagramOutputTarget
          A datagram output target.
 class SMTPOutputLogTarget
          Logkit output target that logs data via SMTP.
 class SocketOutputTarget
          SocketOutputTarget Useful for writing the output to a TCP/IP client socket.
 



Copyright © 1997-2005 The Apache Software Foundation. All Rights Reserved.