Modifier and Type | Interface and Description |
---|---|
interface |
Logger
A Logger implementation receives event messages from an object and exports
them.
|
interface |
TopicalLogger
A TopicalLogger dispatches events to a set of Handlers.
|
Modifier and Type | Method and Description |
---|---|
Handler |
HandlerFactory.createHandler(java.lang.String hn,
java.lang.String handlertype)
It retrieves a new instance of an handler which the type is specified
by the parameter.
|
Handler[] |
TopicalLogger.getHandler()
It returns the list of the handler associated to this logger.
|
Handler |
HandlerFactory.getHandler(java.lang.String handlername)
It retrieves the handler which the name is specified by the parameter
|
Handler |
TopicalLogger.getHandler(java.lang.String hn)
It returns the handler which the name is equals to the parameter
|
Handler[] |
HandlerFactory.getHandlers()
It retrieves all handler managed by this factory.
|
Handler |
HandlerFactory.removeHandler(java.lang.String handlername)
It removes the handler which the name is specified by the parameter
|
Modifier and Type | Method and Description |
---|---|
void |
TopicalLogger.addHandler(Handler h)
A TopicalLogger manages a list of Handler instances.
|
void |
MonologFactoryListener.handlerCreated(Handler handler)
It is called when a new handler has been created by the monolog factory
|
void |
MonologFactoryListener.handlerRemoved(Handler handler)
It i called when an handler has been removed by the monolog factory
|
void |
TopicalLogger.removeHandler(Handler h)
A TopicalLogger manages a list of Handler instances.
|