Uses of Interface
org.apache.log.LogTarget
-
Packages that use LogTarget Package Description 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.net Datagram, Socket and SMTP output destination LogTargets. -
-
Uses of LogTarget in org.apache.log
Fields in org.apache.log declared as LogTarget Modifier and Type Field Description private LogTarget[]Logger. m_logTargetsMethods in org.apache.log that return LogTarget Modifier and Type Method Description private LogTarget[]Logger. safeGetLogTargets()Retrieve logtarget array contained in logger.Methods in org.apache.log with parameters of type LogTarget Modifier and Type Method Description private voidLogger. fireEvent(LogEvent event, LogTarget[] targets)voidHierarchy. setDefaultLogTarget(LogTarget target)Set the default log target for hierarchy.voidHierarchy. setDefaultLogTargets(LogTarget[] targets)Set the default log targets for this hierarchy.voidLogger. setLogTargets(LogTarget[] logTargets)Set the log targets for this logger.Constructors in org.apache.log with parameters of type LogTarget Constructor Description Logger(ErrorHandler errorHandler, LoggerListener loggerListener, java.lang.String category, LogTarget[] logTargets, Logger parent)Protected constructor for use inside the logging toolkit. -
Uses of LogTarget in org.apache.log.output
Classes in org.apache.log.output that implement LogTarget Modifier and Type Class Description classAbstractOutputTargetAbstract output target.classAbstractTargetAbstract target.classAbstractWrappingTargetAbstract base class for targets that wrap other targets.classAsyncLogTargetAn asynchronous LogTarget that sends entries on in another thread.classMemoryTargetOutput LogEvents into an buffer in memory.classNullOutputLogTargetA output target that does nothing.classPriorityFilteringTargetThis is a priority filtering target that forwards only requests to other (wrapped) targets that have the same or a higher priority.classServletOutputLogTargetGeneric logging interface.Fields in org.apache.log.output declared as LogTarget Modifier and Type Field Description private LogTargetMemoryTarget. m_targetprivate LogTarget[]PriorityFilteringTarget. m_targetsLog targets in filter chainprivate LogTargetAbstractWrappingTarget. m_wrappedLogTargetMethods in org.apache.log.output that return LogTarget Modifier and Type Method Description protected LogTargetAbstractWrappingTarget. getLogTarget()Return the target for subclassesMethods in org.apache.log.output with parameters of type LogTarget Modifier and Type Method Description voidPriorityFilteringTarget. addTarget(LogTarget target)Add a new target to output chain.Constructors in org.apache.log.output with parameters of type LogTarget Constructor Description AbstractWrappingTarget(LogTarget logTarget)Creation of a new wrapping log target.AbstractWrappingTarget(LogTarget logTarget, boolean closeWrappedTarget)Creation of a new wrapping log target.AsyncLogTarget(LogTarget logTarget)Creation of a new async log target.AsyncLogTarget(LogTarget logTarget, boolean closeTarget)Creation of a new async log target.AsyncLogTarget(LogTarget logTarget, int queueSize)Creation of a new async log target.AsyncLogTarget(LogTarget logTarget, int queueSize, boolean closeTarget)Creation of a new async log target.MemoryTarget(LogTarget target, int size, Priority threshold)Creation of a new instance of the memory target. -
Uses of LogTarget in org.apache.log.output.db
Classes in org.apache.log.output.db that implement LogTarget Modifier and Type Class Description classAbstractJDBCTargetAbstract JDBC target.classDefaultJDBCTargetThe basic DB target for configurable output formats.classNormalizedJDBCTargetJDBC 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 Modifier and Type Class Description classFileTargetA basic target that writes to a File.classSafeFileTargetA target that will open and close a file for each logevent.classStreamTargetA basic target that writes to an OutputStream.classWriterTargetThis 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 Modifier and Type Class Description classRotatingFileTargetThis 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 Modifier and Type Class Description classAbstractJMSTargetA target that writes to a JMS Topic.classJMSQueueTargetA target that writes to a JMS Queue.classJMSTopicTargetA target that writes to a JMS Topic. -
Uses of LogTarget in org.apache.log.output.net
Classes in org.apache.log.output.net that implement LogTarget Modifier and Type Class Description classDatagramOutputTargetA datagram output target.classSMTPOutputLogTargetLogkit output target that logs data via SMTP.classSocketOutputTargetSocketOutputTarget Useful for writing the output to a TCP/IP client socket.
-