|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectde.opsdesign.yax.log.LogBuilder
de.opsdesign.yax.log.CommonsAdapter
public class CommonsAdapter
| Field Summary | |
|---|---|
protected int |
currentLogLevel
The current log level |
protected static java.text.DateFormat |
dateFormatter
Used to format times |
protected static java.lang.String |
dateTimeFormat
The date and time format to use in the log message |
protected static java.lang.String |
DEFAULT_DATE_TIME_FORMAT
The default format to use when formating dates |
static int |
LOG_LEVEL_ALL
Enable all logging levels |
static int |
LOG_LEVEL_DEBUG
"Debug" level logging. |
static int |
LOG_LEVEL_ERROR
"Error" level logging. |
static int |
LOG_LEVEL_FATAL
"Fatal" level logging. |
static int |
LOG_LEVEL_INFO
"Info" level logging. |
static int |
LOG_LEVEL_OFF
Enable no logging levels |
static int |
LOG_LEVEL_TRACE
"Trace" level logging. |
static int |
LOG_LEVEL_WARN
"Warn" level logging. |
protected java.lang.String |
logName
The name of this simple log instance |
protected static boolean |
showDateTime
Include the current time in the log message |
protected static boolean |
showLogName
Include the instance name in the log message? |
protected static boolean |
showShortName
Include the short name ( last component ) of the logger in the log message. |
protected static java.util.Properties |
simpleLogProps
Properties loaded from simplelog.properties |
protected static java.lang.String |
systemPrefix
All system properties used by SimpleLog start with this |
| Constructor Summary | |
|---|---|
CommonsAdapter(java.lang.String name)
Construct a simple log with given name. |
|
| Method Summary | |
|---|---|
void |
debug(java.lang.Object message)
Logs a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_DEBUG. |
void |
debug(java.lang.Object message,
java.lang.Throwable t)
Logs a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_DEBUG. |
void |
error(java.lang.Object message)
Logs a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_ERROR. |
void |
error(java.lang.Object message,
java.lang.Throwable t)
Logs a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_ERROR. |
void |
fatal(java.lang.Object message)
Log a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_FATAL. |
void |
fatal(java.lang.Object message,
java.lang.Throwable t)
Logs a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_FATAL. |
int |
getLevel()
Get logging level. |
java.lang.String |
getLogMessage(java.lang.Object message)
|
java.lang.String |
getLogName()
|
void |
info(java.lang.Object message)
Logs a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_INFO. |
void |
info(java.lang.Object message,
java.lang.Throwable t)
Logs a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_INFO. |
boolean |
isDebugEnabled()
Are debug messages currently enabled? |
boolean |
isErrorEnabled()
Are error messages currently enabled? |
boolean |
isFatalEnabled()
Are fatal messages currently enabled? |
boolean |
isInfoEnabled()
Are info messages currently enabled? |
protected boolean |
isLevelEnabled(int logLevel)
Is the given log level currently enabled? |
boolean |
isTraceEnabled()
Are trace messages currently enabled? |
boolean |
isWarnEnabled()
Are warn messages currently enabled? |
int |
mapLevelCommonsToLog4j(int source)
|
int |
mapLevelLog4jToCommons(int source)
|
void |
setLevel(int currentLogLevel)
Set logging level. |
void |
setLogName(java.lang.String logName)
|
void |
trace(java.lang.Object message)
Logs a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_TRACE. |
void |
trace(java.lang.Object message,
java.lang.Throwable t)
Logs a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_TRACE. |
void |
warn(java.lang.Object message)
Logs a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_WARN. |
void |
warn(java.lang.Object message,
java.lang.Throwable t)
Logs a message with org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_WARN. |
| Methods inherited from class de.opsdesign.yax.log.LogBuilder |
|---|
log, log, log, log |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected static final java.lang.String systemPrefix
SimpleLog start with this
protected static final java.util.Properties simpleLogProps
protected static final java.lang.String DEFAULT_DATE_TIME_FORMAT
protected static boolean showLogName
protected static boolean showShortName
protected static boolean showDateTime
protected static java.lang.String dateTimeFormat
protected static java.text.DateFormat dateFormatter
public static final int LOG_LEVEL_TRACE
public static final int LOG_LEVEL_DEBUG
public static final int LOG_LEVEL_INFO
public static final int LOG_LEVEL_WARN
public static final int LOG_LEVEL_ERROR
public static final int LOG_LEVEL_FATAL
public static final int LOG_LEVEL_ALL
public static final int LOG_LEVEL_OFF
protected java.lang.String logName
protected int currentLogLevel
| Constructor Detail |
|---|
public CommonsAdapter(java.lang.String name)
name - log name| Method Detail |
|---|
public void setLevel(int currentLogLevel)
Set logging level.
currentLogLevel - new logging levelpublic int getLevel()
Get logging level.
public java.lang.String getLogMessage(java.lang.Object message)
protected boolean isLevelEnabled(int logLevel)
logLevel - is this level enabled?public int mapLevelCommonsToLog4j(int source)
public int mapLevelLog4jToCommons(int source)
public final void debug(java.lang.Object message)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_DEBUG.
debug in interface org.apache.commons.logging.Logmessage - to logLog.debug(Object)
public final void debug(java.lang.Object message,
java.lang.Throwable t)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_DEBUG.
debug in interface org.apache.commons.logging.Logmessage - to logt - log this causeLog.debug(Object, Throwable)public final void trace(java.lang.Object message)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_TRACE.
trace in interface org.apache.commons.logging.Logmessage - to logLog.trace(Object)
public final void trace(java.lang.Object message,
java.lang.Throwable t)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_TRACE.
trace in interface org.apache.commons.logging.Logmessage - to logt - log this causeLog.trace(Object, Throwable)public final void info(java.lang.Object message)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_INFO.
info in interface org.apache.commons.logging.Logmessage - to logLog.info(Object)
public final void info(java.lang.Object message,
java.lang.Throwable t)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_INFO.
info in interface org.apache.commons.logging.Logmessage - to logt - log this causeLog.info(Object, Throwable)public final void warn(java.lang.Object message)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_WARN.
warn in interface org.apache.commons.logging.Logmessage - to logLog.warn(Object)
public final void warn(java.lang.Object message,
java.lang.Throwable t)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_WARN.
warn in interface org.apache.commons.logging.Logmessage - to logt - log this causeLog.warn(Object, Throwable)public final void error(java.lang.Object message)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_ERROR.
error in interface org.apache.commons.logging.Logmessage - to logLog.error(Object)
public final void error(java.lang.Object message,
java.lang.Throwable t)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_ERROR.
error in interface org.apache.commons.logging.Logmessage - to logt - log this causeLog.error(Object, Throwable)public final void fatal(java.lang.Object message)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_FATAL.
fatal in interface org.apache.commons.logging.Logmessage - to logLog.fatal(Object)
public final void fatal(java.lang.Object message,
java.lang.Throwable t)
org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_FATAL.
fatal in interface org.apache.commons.logging.Logmessage - to logt - log this causeLog.fatal(Object, Throwable)public final boolean isDebugEnabled()
Are debug messages currently enabled?
This allows expensive operations such as String
concatenation to be avoided when the message will be ignored by the
logger.
isDebugEnabled in interface org.apache.commons.logging.Logpublic final boolean isErrorEnabled()
Are error messages currently enabled?
This allows expensive operations such as String
concatenation to be avoided when the message will be ignored by the
logger.
isErrorEnabled in interface org.apache.commons.logging.Logpublic final boolean isFatalEnabled()
Are fatal messages currently enabled?
This allows expensive operations such as String
concatenation to be avoided when the message will be ignored by the
logger.
isFatalEnabled in interface org.apache.commons.logging.Logpublic final boolean isInfoEnabled()
Are info messages currently enabled?
This allows expensive operations such as String
concatenation to be avoided when the message will be ignored by the
logger.
isInfoEnabled in interface org.apache.commons.logging.Logpublic final boolean isTraceEnabled()
Are trace messages currently enabled?
This allows expensive operations such as String
concatenation to be avoided when the message will be ignored by the
logger.
isTraceEnabled in interface org.apache.commons.logging.Logpublic final boolean isWarnEnabled()
Are warn messages currently enabled?
This allows expensive operations such as String
concatenation to be avoided when the message will be ignored by the
logger.
isWarnEnabled in interface org.apache.commons.logging.Logpublic java.lang.String getLogName()
public void setLogName(java.lang.String logName)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||