|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.slf4j.helpers.MarkerIgnoringBase
org.openmdx.kernel.log.impl.SysLogLoggerAdapter
public final class SysLogLoggerAdapter
A wrapper over org.openmdx.kernel.SysLog in
conformity with the Logger interface.
| Field Summary |
|---|
| Fields inherited from interface org.slf4j.spi.LocationAwareLogger |
|---|
DEBUG_INT, ERROR_INT, INFO_INT, TRACE_INT, WARN_INT |
| Fields inherited from interface org.slf4j.Logger |
|---|
ROOT_LOGGER_NAME |
| Method Summary | |
|---|---|
void |
debug(String msg)
Log a message object at level LOG_LEVEL_DETAIL. |
void |
debug(String format,
Object arg)
Log a message at level LOG_LEVEL_DETAIL according to the specified format and argument. |
void |
debug(String format,
Object[] argArray)
Log a message at level LOG_LEVEL_DETAIL according to the specified format and arguments. |
void |
debug(String format,
Object arg1,
Object arg2)
Log a message at level LOG_LEVEL_DETAIL according to the specified format and arguments. |
void |
debug(String msg,
Throwable t)
Log an exception (throwable) at level LOG_LEVEL_DETAIL with an accompanying message. |
void |
error(String msg)
Log a message object at the SEVERE level. |
void |
error(String format,
Object arg)
Log a message at the LOG_LEVEL_ERROR level according to the specified format and argument. |
void |
error(String format,
Object[] argArray)
Log a message at level INFO according to the specified format and arguments. |
void |
error(String format,
Object arg1,
Object arg2)
Log a message at the LOG_LEVEL_ERROR level according to the specified format and arguments. |
void |
error(String msg,
Throwable t)
Log an exception (throwable) at the SEVERE level with an accompanying message. |
String |
getName()
Return the name of this Logger instance. |
void |
info(String msg)
Log a message object at the INFO level. |
void |
info(String format,
Object arg)
Log a message at level INFO according to the specified format and argument. |
void |
info(String format,
Object[] argArray)
Log a message at level INFO according to the specified format and arguments. |
void |
info(String format,
Object arg1,
Object arg2)
Log a message at the INFO level according to the specified format and arguments. |
void |
info(String msg,
Throwable t)
Log an exception (throwable) at the INFO level with an accompanying message. |
boolean |
isDebugEnabled()
Is this logger instance enabled for the LOG_LEVEL_DETAIL level? |
boolean |
isErrorEnabled()
Is this logger instance enabled for level LOG_LEVEL_ERROR? |
boolean |
isInfoEnabled()
Is this logger instance enabled for the INFO level? |
boolean |
isTraceEnabled()
Is the logger instance enabled for the TRACE level? |
boolean |
isWarnEnabled()
Is this logger instance enabled for the WARNING level? |
void |
log(Marker marker,
String callerFQCN,
int level,
String message,
Throwable t)
Printing method which support for location information. |
void |
trace(String msg)
Log a message at the TRACE level. |
void |
trace(String format,
Object arg)
Log a message at the TRACE level according to the specified format and argument. |
void |
trace(String format,
Object[] argArray)
Log a message at the TRACE level according to the specified format and arguments. |
void |
trace(String format,
Object arg1,
Object arg2)
Log a message at the TRACE level according to the specified format and arguments. |
void |
trace(String msg,
Throwable t)
Log an exception (throwable) at the TRACE level with an accompanying message. |
void |
warn(String msg)
Log a message object at the WARNING level. |
void |
warn(String format,
Object arg)
Log a message at the WARNING level according to the specified format and argument. |
void |
warn(String format,
Object[] argArray)
Log a message at level WARNING according to the specified format and arguments. |
void |
warn(String format,
Object arg1,
Object arg2)
Log a message at the WARNING level according to the specified format and arguments. |
void |
warn(String msg,
Throwable t)
Log an exception (throwable) at the WARNING level with an accompanying message. |
| Methods inherited from class org.slf4j.helpers.MarkerIgnoringBase |
|---|
debug, debug, debug, debug, debug, error, error, error, error, error, info, info, info, info, info, isDebugEnabled, isErrorEnabled, isInfoEnabled, isTraceEnabled, isWarnEnabled, toString, trace, trace, trace, trace, trace, warn, warn, warn, warn, warn |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.slf4j.Logger |
|---|
debug, debug, debug, debug, debug, error, error, error, error, error, info, info, info, info, info, isDebugEnabled, isErrorEnabled, isInfoEnabled, isTraceEnabled, isWarnEnabled, trace, trace, trace, trace, trace, warn, warn, warn, warn, warn |
| Method Detail |
|---|
public String getName()
LoggerLogger instance.
getName in interface Logger
public void log(Marker marker,
String callerFQCN,
int level,
String message,
Throwable t)
LocationAwareLogger
log in interface LocationAwareLoggercallerFQCN - The fully qualified class name of the callerpublic final boolean isTraceEnabled()
Logger
isTraceEnabled in interface Loggerpublic void trace(String msg)
Logger
trace in interface Loggermsg - the message string to be logged
public void trace(String format,
Object arg)
LoggerThis form avoids superfluous object creation when the logger is disabled for the TRACE level.
trace in interface Loggerformat - the format stringarg - the argument
public void trace(String format,
Object arg1,
Object arg2)
LoggerThis form avoids superfluous object creation when the logger is disabled for the TRACE level.
trace in interface Loggerformat - the format stringarg1 - the first argumentarg2 - the second argument
public void trace(String format,
Object[] argArray)
LoggerThis form avoids superfluous object creation when the logger is disabled for the TRACE level.
trace in interface Loggerformat - the format stringargArray - an array of arguments
public void trace(String msg,
Throwable t)
Logger
trace in interface Loggermsg - the message accompanying the exceptiont - the exception (throwable) to logpublic final boolean isDebugEnabled()
isDebugEnabled in interface Loggerpublic void debug(String msg)
debug in interface Loggermsg - -
the message object to be logged
public void debug(String format,
Object arg)
This form avoids superfluous object creation when the logger is disabled for level LOG_LEVEL_DETAIL.
debug in interface Loggerformat - the format stringarg - the argument
public void debug(String format,
Object arg1,
Object arg2)
This form avoids superfluous object creation when the logger is disabled for the LOG_LEVEL_DETAIL level.
debug in interface Loggerformat - the format stringarg1 - the first argumentarg2 - the second argument
public void debug(String format,
Object[] argArray)
This form avoids superfluous object creation when the logger is disabled for the LOG_LEVEL_DETAIL level.
debug in interface Loggerformat - the format stringargArray - an array of arguments
public void debug(String msg,
Throwable t)
debug in interface Loggermsg - the message accompanying the exceptiont - the exception (throwable) to logpublic final boolean isInfoEnabled()
isInfoEnabled in interface Loggerpublic void info(String msg)
info in interface Loggermsg - -
the message object to be logged
public void info(String format,
Object arg)
This form avoids superfluous object creation when the logger is disabled for the INFO level.
info in interface Loggerformat - the format stringarg - the argument
public void info(String format,
Object arg1,
Object arg2)
This form avoids superfluous object creation when the logger is disabled for the INFO level.
info in interface Loggerformat - the format stringarg1 - the first argumentarg2 - the second argument
public void info(String format,
Object[] argArray)
This form avoids superfluous object creation when the logger is disabled for the INFO level.
info in interface Loggerformat - the format stringargArray - an array of arguments
public void info(String msg,
Throwable t)
info in interface Loggermsg - the message accompanying the exceptiont - the exception (throwable) to logpublic final boolean isWarnEnabled()
isWarnEnabled in interface Loggerpublic void warn(String msg)
warn in interface Loggermsg - -
the message object to be logged
public void warn(String format,
Object arg)
This form avoids superfluous object creation when the logger is disabled for the WARNING level.
warn in interface Loggerformat - the format stringarg - the argument
public void warn(String format,
Object arg1,
Object arg2)
This form avoids superfluous object creation when the logger is disabled for the WARNING level.
warn in interface Loggerformat - the format stringarg1 - the first argumentarg2 - the second argument
public void warn(String format,
Object[] argArray)
This form avoids superfluous object creation when the logger is disabled for the WARNING level.
warn in interface Loggerformat - the format stringargArray - an array of arguments
public void warn(String msg,
Throwable t)
warn in interface Loggermsg - the message accompanying the exceptiont - the exception (throwable) to logpublic final boolean isErrorEnabled()
isErrorEnabled in interface Loggerpublic void error(String msg)
error in interface Loggermsg - -
the message object to be logged
public void error(String format,
Object arg)
This form avoids superfluous object creation when the logger is disabled for the LOG_LEVEL_ERROR level.
error in interface Loggerformat - the format stringarg - the argument
public void error(String format,
Object arg1,
Object arg2)
This form avoids superfluous object creation when the logger is disabled for the LOG_LEVEL_ERROR level.
error in interface Loggerformat - the format stringarg1 - the first argumentarg2 - the second argument
public void error(String format,
Object[] argArray)
This form avoids superfluous object creation when the logger is disabled for the INFO level.
error in interface Loggerformat - the format stringargArray - an array of arguments
public void error(String msg,
Throwable t)
error in interface Loggermsg - the message accompanying the exceptiont - the exception (throwable) to log
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||