Package | Description |
---|---|
com.netscape.certsrv.logging | |
com.netscape.cms.logging | |
com.netscape.cms.servlet.base |
Modifier and Type | Field and Description |
---|---|
static LogSource |
ILogger.S_ACLS
log source: identify the log entry is from acl subsystem
|
static LogSource |
ILogger.S_ADMIN
log source: identify the log entry is from admin subsystem
|
static LogSource |
ILogger.S_ALL
log source: used by servlet to retrieve all logs
|
static LogSource |
ILogger.S_AUTHENTICATION
log source: identify the log entry is from authentication subsystem
|
static LogSource |
ILogger.S_AUTHORIZATION
log source: identify the log entry is from authorization subsystem
|
static LogSource |
ILogger.S_CA
log source: identify the log entry is from CA
|
static LogSource |
ILogger.S_DB
log source: identify the log entry is from database subsystem
|
static LogSource |
ILogger.S_HTTP
log source: identify the log entry is from http subsystem
|
static LogSource |
ILogger.S_KRA
log source: identify the log entry is from KRA
|
static LogSource |
ILogger.S_LDAP
log source: identify the log entry is from ldap subsystem
|
static LogSource |
ILogger.S_OCSP |
static LogSource |
ILogger.S_OTHER
log source: identify the log entry is from other subsystem
eg.
|
static LogSource |
ILogger.S_RA
log source: identify the log entry is from RA
|
static LogSource |
ILogger.S_REQQUEUE
log source: identify the log entry is from request queue subsystem
|
static LogSource |
ILogger.S_SIGNED_AUDIT
log source: identify the log entry is from signed audit
|
static LogSource |
ILogger.S_TKS
log source: identify the log entry is from CrossCertPair subsystem
|
static LogSource |
ILogger.S_TPS |
static LogSource |
ILogger.S_USRGRP
log source: identify the log entry is from usergrp subsystem
|
static LogSource |
ILogger.S_XCERT
log source: identify the log entry is from CrossCertPair subsystem
|
Modifier and Type | Method and Description |
---|---|
LogSource |
LogEvent.getSource()
Retrieves log source.
|
LogSource |
ILogEvent.getSource()
Retrieves log source.
|
static LogSource |
LogSource.valueOf(int value) |
static LogSource |
LogSource.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogSource[] |
LogSource.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ILogEvent |
ILogger.create(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
java.lang.Object[] params,
boolean multiline) |
void |
ILogger.log(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg)
Logs an event to the log queue.
|
void |
ILogger.log(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
boolean multiline)
Logs an event to the log queue.
|
void |
ILogger.log(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
java.lang.Object param)
Logs an event to the log queue.
|
void |
ILogger.log(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
java.lang.Object[] params)
Logs an event to the log queue.
|
void |
ILogger.log(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
java.lang.Object param,
boolean multiline)
Logs an event to the log queue.
|
void |
ILogger.log(LogCategory evtClass,
LogSource source,
java.lang.String msg)
Logs an event to the log queue.
|
void |
ILogger.log(LogCategory evtClass,
LogSource source,
java.lang.String msg,
boolean multiline)
Logs an event to the log queue.
|
void |
LogEvent.setSource(LogSource source)
Sets log source.
|
Modifier and Type | Method and Description |
---|---|
ILogEvent |
Logger.create(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
java.lang.Object[] params,
boolean multiline)
Creates generic log event.
|
Logger |
LogFactory.createLogger(LogCategory category,
LogSource source) |
static Logger |
Logger.getLogger(LogCategory category,
LogSource source) |
void |
Logger.log(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg)
Logs an event to the log queue.
|
void |
Logger.log(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
boolean multiline)
Logs an event to the log queue.
|
void |
Logger.log(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
java.lang.Object param)
Logs an event to the log queue.
|
void |
Logger.log(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
java.lang.Object[] params)
Logs an event to the log queue.
|
void |
SignedAuditLogger.log(LogCategory category,
LogSource source,
int level,
java.lang.String message,
java.lang.Object[] params,
boolean multiline) |
void |
Logger.log(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
java.lang.Object[] params,
boolean multiline)
Logs an event to the log queue.
|
void |
Logger.log(LogCategory evtClass,
LogSource source,
int level,
java.lang.String msg,
java.lang.Object param,
boolean multiline)
Logs an event to the log queue.
|
void |
Logger.log(LogCategory evtClass,
LogSource source,
java.lang.String msg)
Logs an event using default log level.
|
void |
Logger.log(LogCategory evtClass,
LogSource source,
java.lang.String msg,
boolean multiline)
Logs an event using default log level.
|
java.util.Vector<LogEntry> |
LogFile.readEntry(int maxLine,
int lowLevel,
LogSource source,
java.lang.String fName)
Read all entries whose logLevel>=lowLevel && log source = source
to at most maxLine entries(from end)
If the parameter is -1, it's ignored and return all entries
|
void |
SignedAuditLogger.update(LogEvent event,
LogSource source,
int level,
java.lang.String message,
java.lang.Object[] params,
boolean multiline) |
void |
Logger.update(LogEvent event,
LogSource source,
int level,
java.lang.String message,
java.lang.Object[] params,
boolean multiline)
Updates a log event.
|
Constructor and Description |
---|
Logger(LogFactory factory,
LogCategory category,
LogSource source) |
Logger(LogFactory factory,
LogCategory category,
LogSource source,
int level) |
Modifier and Type | Field and Description |
---|---|
protected LogSource |
CMSServlet.mLogCategory |