Inherits org::slf4j::helpers::MarkerIgnoringBase, and org::slf4j::spi::LocationAwareLogger.
Public Member Functions | |
| boolean | isTraceEnabled () |
| void | trace (String msg) |
| void | trace (String format, Object arg) |
| void | trace (String format, Object arg1, Object arg2) |
| void | trace (String format, Object[] argArray) |
| void | trace (String msg, Throwable t) |
| boolean | isDebugEnabled () |
| void | debug (String msg) |
| void | debug (String format, Object arg) |
| void | debug (String format, Object arg1, Object arg2) |
| void | debug (String format, Object[] argArray) |
| void | debug (String msg, Throwable t) |
| boolean | isInfoEnabled () |
| void | info (String msg) |
| void | info (String format, Object arg) |
| void | info (String format, Object arg1, Object arg2) |
| void | info (String format, Object[] argArray) |
| void | info (String msg, Throwable t) |
| boolean | isWarnEnabled () |
| void | warn (String msg) |
| void | warn (String format, Object arg) |
| void | warn (String format, Object arg1, Object arg2) |
| void | warn (String format, Object[] argArray) |
| void | warn (String msg, Throwable t) |
| boolean | isErrorEnabled () |
| void | error (String msg) |
| void | error (String format, Object arg) |
| void | error (String format, Object arg1, Object arg2) |
| void | error (String format, Object[] argArray) |
| void | error (String msg, Throwable t) |
| void | log (Marker marker, String callerFQCN, int level, String message, Throwable t) |
Package Functions | |
| JDK14LoggerAdapter (java.util.logging.Logger logger) | |
Package Attributes | |
| final java.util.logging.Logger | logger |
Static Package Attributes | |
| static String | SELF = JDK14LoggerAdapter.class.getName() |
| static String | SUPER = MarkerIgnoringBase.class.getName() |
This class has been extracted directly from slf4j-jdk14-1.5.8-sources.jar since our AcsLogger appears to slf4j as a plain JDK logger.
A wrapper over java.util.logging.Logger in conformity with the Logger interface. Note that the logging levels mentioned in this class refer to those defined in the java.util.logging package.
| org.slf4j.impl.JDK14LoggerAdapter.JDK14LoggerAdapter | ( | java.util.logging.Logger | logger | ) | [package] |
References org.slf4j.impl.JDK14LoggerAdapter.logger.
| void org.slf4j.impl.JDK14LoggerAdapter.debug | ( | String | msg | ) |
Log a message object at level FINE.
| msg | - the message object to be logged |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.debug | ( | String | format, | |
| Object | arg | |||
| ) |
Log a message at level FINE according to the specified format and argument.
This form avoids superfluous object creation when the logger is disabled for level FINE.
| format | the format string | |
| arg | the argument |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.debug | ( | String | format, | |
| Object | arg1, | |||
| Object | arg2 | |||
| ) |
Log a message at level FINE according to the specified format and arguments.
This form avoids superfluous object creation when the logger is disabled for the FINE level.
| format | the format string | |
| arg1 | the first argument | |
| arg2 | the second argument |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.debug | ( | String | format, | |
| Object[] | argArray | |||
| ) |
Log a message at level FINE according to the specified format and arguments.
This form avoids superfluous object creation when the logger is disabled for the FINE level.
| format | the format string | |
| argArray | an array of arguments |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.debug | ( | String | msg, | |
| Throwable | t | |||
| ) |
Log an exception (throwable) at level FINE with an accompanying message.
| msg | the message accompanying the exception | |
| t | the exception (throwable) to log |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.error | ( | String | msg | ) |
Log a message object at the SEVERE level.
| msg | - the message object to be logged |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.error | ( | String | format, | |
| Object | arg | |||
| ) |
Log a message at the SEVERE level according to the specified format and argument.
This form avoids superfluous object creation when the logger is disabled for the SEVERE level.
| format | the format string | |
| arg | the argument |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.error | ( | String | format, | |
| Object | arg1, | |||
| Object | arg2 | |||
| ) |
Log a message at the SEVERE level according to the specified format and arguments.
This form avoids superfluous object creation when the logger is disabled for the SEVERE level.
| format | the format string | |
| arg1 | the first argument | |
| arg2 | the second argument |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.error | ( | String | format, | |
| Object[] | argArray | |||
| ) |
Log a message at level SEVERE according to the specified format and arguments.
This form avoids superfluous object creation when the logger is disabled for the SEVERE level.
| format | the format string | |
| argArray | an array of arguments |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.error | ( | String | msg, | |
| Throwable | t | |||
| ) |
Log an exception (throwable) at the SEVERE level with an accompanying message.
| msg | the message accompanying the exception | |
| t | the exception (throwable) to log |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.info | ( | String | msg | ) |
Log a message object at the INFO level.
| msg | - the message object to be logged |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.info | ( | String | format, | |
| Object | arg1, | |||
| Object | arg2 | |||
| ) |
Log a message at the INFO level according to the specified format and arguments.
This form avoids superfluous object creation when the logger is disabled for the INFO level.
| format | the format string | |
| arg1 | the first argument | |
| arg2 | the second argument |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.info | ( | String | format, | |
| Object[] | argArray | |||
| ) |
Log a message at level INFO according to the specified format and arguments.
This form avoids superfluous object creation when the logger is disabled for the INFO level.
| format | the format string | |
| argArray | an array of arguments |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.info | ( | String | msg, | |
| Throwable | t | |||
| ) |
Log an exception (throwable) at the INFO level with an accompanying message.
| msg | the message accompanying the exception | |
| t | the exception (throwable) to log |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.info | ( | String | format, | |
| Object | arg | |||
| ) |
Log a message at level INFO according to the specified format and argument.
This form avoids superfluous object creation when the logger is disabled for the INFO level.
| format | the format string | |
| arg | the argument |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| boolean org.slf4j.impl.JDK14LoggerAdapter.isDebugEnabled | ( | ) |
Is this logger instance enabled for the FINE level?
References org.slf4j.impl.JDK14LoggerAdapter.logger.
| boolean org.slf4j.impl.JDK14LoggerAdapter.isErrorEnabled | ( | ) |
Is this logger instance enabled for level SEVERE?
References org.slf4j.impl.JDK14LoggerAdapter.logger.
| boolean org.slf4j.impl.JDK14LoggerAdapter.isInfoEnabled | ( | ) |
Is this logger instance enabled for the INFO level?
References org.slf4j.impl.JDK14LoggerAdapter.logger.
| boolean org.slf4j.impl.JDK14LoggerAdapter.isTraceEnabled | ( | ) |
Is this logger instance enabled for the FINEST level?
References org.slf4j.impl.JDK14LoggerAdapter.logger.
| boolean org.slf4j.impl.JDK14LoggerAdapter.isWarnEnabled | ( | ) |
Is this logger instance enabled for the WARNING level?
References org.slf4j.impl.JDK14LoggerAdapter.logger.
| void org.slf4j.impl.JDK14LoggerAdapter.log | ( | Marker | marker, | |
| String | callerFQCN, | |||
| int | level, | |||
| String | message, | |||
| Throwable | t | |||
| ) |
References org.slf4j.impl.JDK14LoggerAdapter.logger.
| void org.slf4j.impl.JDK14LoggerAdapter.trace | ( | String | format, | |
| Object | arg1, | |||
| Object | arg2 | |||
| ) |
Log a message at level FINEST according to the specified format and arguments.
This form avoids superfluous object creation when the logger is disabled for the FINEST level.
| format | the format string | |
| arg1 | the first argument | |
| arg2 | the second argument |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.trace | ( | String | msg | ) |
Log a message object at level FINEST.
| msg | - the message object to be logged |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.trace | ( | String | format, | |
| Object[] | argArray | |||
| ) |
Log a message at level FINEST according to the specified format and arguments.
This form avoids superfluous object creation when the logger is disabled for the FINEST level.
| format | the format string | |
| argArray | an array of arguments |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.trace | ( | String | msg, | |
| Throwable | t | |||
| ) |
Log an exception (throwable) at level FINEST with an accompanying message.
| msg | the message accompanying the exception | |
| t | the exception (throwable) to log |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.trace | ( | String | format, | |
| Object | arg | |||
| ) |
Log a message at level FINEST according to the specified format and argument.
This form avoids superfluous object creation when the logger is disabled for level FINEST.
| format | the format string | |
| arg | the argument |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.warn | ( | String | msg, | |
| Throwable | t | |||
| ) |
Log an exception (throwable) at the WARNING level with an accompanying message.
| msg | the message accompanying the exception | |
| t | the exception (throwable) to log |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.warn | ( | String | msg | ) |
Log a message object at the WARNING level.
| msg | - the message object to be logged |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.warn | ( | String | format, | |
| Object | arg | |||
| ) |
Log a message at the WARNING level according to the specified format and argument.
This form avoids superfluous object creation when the logger is disabled for the WARNING level.
| format | the format string | |
| arg | the argument |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.warn | ( | String | format, | |
| Object | arg1, | |||
| Object | arg2 | |||
| ) |
Log a message at the WARNING level according to the specified format and arguments.
This form avoids superfluous object creation when the logger is disabled for the WARNING level.
| format | the format string | |
| arg1 | the first argument | |
| arg2 | the second argument |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
| void org.slf4j.impl.JDK14LoggerAdapter.warn | ( | String | format, | |
| Object[] | argArray | |||
| ) |
Log a message at level WARNING according to the specified format and arguments.
This form avoids superfluous object creation when the logger is disabled for the WARNING level.
| format | the format string | |
| argArray | an array of arguments |
References org.slf4j.impl.JDK14LoggerAdapter.logger, and org.slf4j.impl.JDK14LoggerAdapter.SELF.
final java.util.logging.Logger org.slf4j.impl.JDK14LoggerAdapter.logger [package] |
Referenced by org.slf4j.impl.JDK14LoggerAdapter.debug(), org.slf4j.impl.JDK14LoggerAdapter.error(), org.slf4j.impl.JDK14LoggerAdapter.info(), org.slf4j.impl.JDK14LoggerAdapter.isDebugEnabled(), org.slf4j.impl.JDK14LoggerAdapter.isErrorEnabled(), org.slf4j.impl.JDK14LoggerAdapter.isInfoEnabled(), org.slf4j.impl.JDK14LoggerAdapter.isTraceEnabled(), org.slf4j.impl.JDK14LoggerAdapter.isWarnEnabled(), org.slf4j.impl.JDK14LoggerAdapter.JDK14LoggerAdapter(), org.slf4j.impl.JDK14LoggerAdapter.log(), org.slf4j.impl.JDK14LoggerAdapter.trace(), and org.slf4j.impl.JDK14LoggerAdapter.warn().
String org.slf4j.impl.JDK14LoggerAdapter.SELF = JDK14LoggerAdapter.class.getName() [static, package] |
String org.slf4j.impl.JDK14LoggerAdapter.SUPER = MarkerIgnoringBase.class.getName() [static, package] |
1.7.0