Package | Description |
---|---|
org.objectweb.util.monolog | |
org.objectweb.util.monolog.api |
The Monolog API.
|
org.objectweb.util.monolog.file.monolog | |
org.objectweb.util.monolog.wrapper.ant | |
org.objectweb.util.monolog.wrapper.common |
Common class between wrapper implementations.
|
org.objectweb.util.monolog.wrapper.config | |
org.objectweb.util.monolog.wrapper.javaLog |
The wrapper for the logging system of the JDK 1.4 (or greater).
|
org.objectweb.util.monolog.wrapper.log4j |
The wrapper for the logging system log4j.
|
org.objectweb.util.monolog.wrapper.printwriter |
Librairies for wrapping Monolog from or to a PrintWriter or PrintStream.
|
Modifier and Type | Field and Description |
---|---|
static LoggerFactory |
Monolog.loggerFactory
Deprecated.
use monologFactory
|
Modifier and Type | Method and Description |
---|---|
static LoggerFactory |
Monolog.getLoggerFactory(java.lang.String className) |
static LoggerFactory |
Monolog.init()
Deprecated.
use initialize()
|
static LoggerFactory |
Monolog.init(java.util.Properties properties)
Deprecated.
use getMonologFactory(Properties)
|
static LoggerFactory |
Monolog.init(java.lang.String fileName)
Deprecated.
use getMonologFactory(String)
|
Modifier and Type | Method and Description |
---|---|
static void |
Monolog.loadMonologConfiguration(java.util.Properties properties,
LoggerFactory lf)
Deprecated.
use loadMonologConfiguration(Properties, MonologFactory)
|
Modifier and Type | Interface and Description |
---|---|
interface |
MonologFactory
A monolog factory is a factory for loggers, levels and handlers.
|
Modifier and Type | Method and Description |
---|---|
LoggerFactory |
Loggable.getLoggerFactory()
Retrieves the logger factory instance used
|
Modifier and Type | Method and Description |
---|---|
void |
Loggable.setLoggerFactory(LoggerFactory lf)
Assigns the logger factory instance to use
|
Modifier and Type | Method and Description |
---|---|
static void |
PropertiesConfAccess.load(java.util.Properties prop,
LoggerFactory lof,
HandlerFactory hf,
LevelFactory lef) |
protected Logger |
PropertiesConfAccess.parseLoggerProp(java.util.Properties prop,
java.lang.String key,
LoggerFactory lof,
HandlerFactory hf,
LevelFactory lef)
It parses a property entry to build or configure a Logger instance.
|
void |
PropertiesConfAccess.read(java.util.Properties prop,
LoggerFactory lof,
HandlerFactory hf,
LevelFactory lef) |
static void |
PropertiesConfAccess.store(java.util.Properties prop,
LoggerFactory lof,
HandlerFactory hf,
LevelFactory lef) |
void |
PropertiesConfAccess.write(java.util.Properties prop,
LoggerFactory lof,
HandlerFactory hf,
LevelFactory lef) |
Constructor and Description |
---|
MonologBuildListener(LoggerFactory loggerFactory) |
Modifier and Type | Interface and Description |
---|---|
interface |
Configurable
Deprecated.
the use of this interface must be replaced by the use of the
MonologFactory interface. This interface is kept for the backward
compatibility.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractFactory |
Modifier and Type | Method and Description |
---|---|
static LoggerFactory |
LoggerFactorySingleton.getLoggerFactory(java.lang.String classname) |
Modifier and Type | Class and Description |
---|---|
class |
BasicFactory
This class is a basic implementation of the monolog factories
(HandlerFactory, LoggerFactory and LevelFactory).
|
Modifier and Type | Class and Description |
---|---|
class |
LoggerFactory
is the LoggerFactory for the wrapper to java.util.logging
|
Modifier and Type | Class and Description |
---|---|
class |
MonologLoggerFactory
This class wraps the LoggerFactory, HandlerFactory, LevelFactory concepts
into the log4j world.
|
Modifier and Type | Class and Description |
---|---|
class |
LoggerImpl
This class is a simple implementation of the Logger interface provided by
the monolog specification.
|
Modifier and Type | Field and Description |
---|---|
protected LoggerFactory |
PrintStreamImpl.loggerFactory |
protected LoggerFactory |
PrintWriterImpl.loggerFactory |
Modifier and Type | Method and Description |
---|---|
LoggerFactory |
PrintStreamImpl.getLoggerFactory()
Retrieves the logger factory instance used
|
LoggerFactory |
PrintWriterImpl.getLoggerFactory()
Retrieves the logger factory instance used
|
Modifier and Type | Method and Description |
---|---|
void |
PrintStreamImpl.setLoggerFactory(LoggerFactory lf)
Assigns the logger factory instance to use
|
void |
PrintWriterImpl.setLoggerFactory(LoggerFactory lf)
Assigns the logger factory instance to use
|
Constructor and Description |
---|
PrintWriterImpl(Logger logger,
LoggerFactory loggerFactory)
It builds a PrintWriterImpl instance.
|