public interface ILogListener
Modifier and Type | Field and Description |
---|---|
static String |
DEBUG |
static String |
ERROR |
static String |
INFO |
Modifier and Type | Method and Description |
---|---|
void |
onLogEvent(String category,
String module,
String logMessage)
Event handler method implementation of the ILogListener interface
Category can be one of
ILogListener.ERROR , ILogListener.DEBUG or ILogListener.INFO |
void |
onLogEvent(String category,
String module,
String logMessage,
Throwable t)
Event handler method implementation of the ILogListener interface
Category can be one of
ILogListener.ERROR , ILogListener.DEBUG or ILogListener.INFO |
static final String ERROR
static final String DEBUG
static final String INFO
void onLogEvent(String category, String module, String logMessage)
ILogListener.ERROR
, ILogListener.DEBUG
or ILogListener.INFO
category
- the serveritymodule
- the originating class / modulelogMessage
- the message detailsvoid onLogEvent(String category, String module, String logMessage, Throwable t)
ILogListener.ERROR
, ILogListener.DEBUG
or ILogListener.INFO
category
- the serveritymodule
- the originating class / modulelogMessage
- the message detailst
- the exception