Package org.jboss.modules.log
The logging interface for JBoss Modules. Logging is abstracted in order to support logging services being provided
by a module. To change the logger in use, use the
Module.setModuleLogger(ModuleLogger)
method.
See ModuleLogger
for the logging contract.-
Interface Summary Interface Description ModuleLogger A simple Logger abstraction. -
Class Summary Class Description JDKModuleLogger AModuleLogger
which logs to a JDK logging category.ModuleLogRecord A log record class which knows how to divine the proper class and method name.NoopModuleLogger AModuleLogger
implementation that does not log.StreamModuleLogger AModuleLogger
implementation that logs all output (including trace) to an output or print stream.