Package org.opends.server.loggers
Class DebugLogPublisher<T extends DebugLogPublisherCfg>
- java.lang.Object
-
- org.opends.server.loggers.DebugLogPublisher<T>
-
- Type Parameters:
T
- The type of debug log publisher configuration handled by this log publisher implementation.
- All Implemented Interfaces:
Closeable
,AutoCloseable
,LogPublisher<T>
- Direct Known Subclasses:
ConsoleDebugLogPublisher
,TextDebugLogPublisher
@PublicAPI(stability=VOLATILE, mayExtend=true) public abstract class DebugLogPublisher<T extends DebugLogPublisherCfg> extends Object implements LogPublisher<T>
This class defines the set of methods and structures that must be implemented for a Directory Server debug log publisher.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
isConfigurationAcceptable(T configuration, List<LocalizableMessage> unacceptableReasons)
Indicates whether the provided configuration is acceptable for this log publisher.abstract void
trace(TraceSettings settings, String signature, String sourceLocation, String msg, StackTraceElement[] stackTrace)
Log an arbitrary event in a method.abstract void
traceException(TraceSettings settings, String signature, String sourceLocation, String msg, Throwable ex, StackTraceElement[] stackTrace)
Log a caught exception in a method.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.opends.server.loggers.LogPublisher
close, getDN, initializeLogPublisher
-
-
-
-
Method Detail
-
isConfigurationAcceptable
public boolean isConfigurationAcceptable(T configuration, List<LocalizableMessage> unacceptableReasons)
Description copied from interface:LogPublisher
Indicates whether the provided configuration is acceptable for this log publisher. It should be possible to call this method on an uninitialized log publisher instance in order to determine whether the log publisher would be able to use the provided configuration.- Specified by:
isConfigurationAcceptable
in interfaceLogPublisher<T extends DebugLogPublisherCfg>
- Parameters:
configuration
- The log publisher configuration for which to make the determination.unacceptableReasons
- A list that may be used to hold the reasons that the provided configuration is not acceptable.- Returns:
true
if the provided configuration is acceptable for this log publisher, orfalse
if not.
-
trace
public abstract void trace(TraceSettings settings, String signature, String sourceLocation, String msg, StackTraceElement[] stackTrace)
Log an arbitrary event in a method.- Parameters:
settings
- The current trace settings in effect.signature
- The method signature.sourceLocation
- The location of the method in the source.msg
- The message to be logged.stackTrace
- The stack trace at the time the message is logged or null if its not available.
-
traceException
public abstract void traceException(TraceSettings settings, String signature, String sourceLocation, String msg, Throwable ex, StackTraceElement[] stackTrace)
Log a caught exception in a method.- Parameters:
settings
- The current trace settings in effect.signature
- The method signature.sourceLocation
- The location of the method in the source.msg
- The message to be logged.ex
- The exception that was caught.stackTrace
- The stack trace at the time the exception is caught or null if its not available.
-
-