Package | Description |
---|---|
com.netscape.certsrv.logging | |
com.netscape.certsrv.logging.event | |
com.netscape.cms.logging |
Modifier and Type | Interface and Description |
---|---|
interface |
IBundleLogEvent
An interface which all loggable events must implement.
|
Modifier and Type | Class and Description |
---|---|
class |
AuditEvent
The log event object that carries message detail of a log event
that goes into the Transaction log.
|
class |
LogEvent |
class |
SignedAuditEvent
The log event object that carries message detail of a log event
that goes into the Signed Audit Event log.
|
class |
SystemEvent
The log event object that carries a log message.
|
Modifier and Type | Method and Description |
---|---|
ILogEvent |
ILogEventFactory.create()
Creates a log event.
|
ILogEvent |
ILogger.create(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
java.lang.Object[] params,
boolean multiline) |
Modifier and Type | Method and Description |
---|---|
void |
ILogQueue.log(ILogEvent evt)
Dispatch the log event to all registered log event listeners.
|
void |
ILogEventListener.log(ILogEvent event)
The event notification method: Logs event.
|
void |
ConsoleLog.log(ILogEvent ev)
Log the given event.
|
void |
ILogEventFactory.release(ILogEvent event)
Releases previously created event.
|
static void |
ConsoleError.send(ILogEvent ev)
Send the given event to the Console.
|
Modifier and Type | Method and Description |
---|---|
ILogEvent |
SystemEventFactory.create()
Creates a log event.
|
ILogEvent |
SignedAuditEventFactory.create()
Creates a log event.
|
ILogEvent |
AuditEventFactory.create()
Creates a log event.
|
ILogEvent |
Logger.create(int level,
java.lang.String msg,
java.lang.Object[] params,
boolean multiline) |
ILogEvent |
Logger.create(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
java.lang.Object[] params,
boolean multiline)
Creates generic log event.
|
Modifier and Type | Method and Description |
---|---|
protected void |
LogFile.doLog(ILogEvent event)
Synchronized method to write an event to the log file.
|
void |
RollingLogFile.log(ILogEvent ev)
Write an event to the log file
|
void |
LogQueue.log(ILogEvent event)
Logs an event, and notifies logger to reuse the event.
|
void |
LogFile.log(ILogEvent ev)
Write an event to the log file
|
java.lang.String |
LogFile.logEvt2String(ILogEvent ev) |
void |
Logger.release(ILogEvent event)
Notifies logger to reuse the event.
|
void |
LogFactory.release(ILogEvent e)
Releases an log event.
|