org.jboss.logging
Interface LoggerPlugin
- All Known Implementing Classes:
- JDK14LoggerPlugin, Log4jLoggerPlugin, NullLoggerPlugin
public interface LoggerPlugin
Defines a "pluggable" login module. In fact, this is only used to split between
log4j and /dev/null. Choice is made in org.jboss.logging.Logger
- Version:
- $Revision: 1.1 $
Revisions:
30 mai 2002 Sacha Labourey:
- Author:
- Sacha Labourey.
- See Also:
Logger
,
Log4jLoggerPlugin
,
NullLoggerPlugin
init
void init(String name)
isTraceEnabled
boolean isTraceEnabled()
trace
void trace(Object message)
trace
void trace(Object message,
Throwable t)
isDebugEnabled
boolean isDebugEnabled()
debug
void debug(Object message)
debug
void debug(Object message,
Throwable t)
isInfoEnabled
boolean isInfoEnabled()
info
void info(Object message)
info
void info(Object message,
Throwable t)
warn
void warn(Object message)
warn
void warn(Object message,
Throwable t)
error
void error(Object message)
error
void error(Object message,
Throwable t)
fatal
void fatal(Object message)
fatal
void fatal(Object message,
Throwable t)
Copyright © 2002 JBoss Group, LLC. All Rights Reserved.