|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface VariableArgumentApplicationLogging
An interface for MessageFormat style variable argument
application logging. The MessageFormat interpretation used by this
interface has been extended to understand DynamicBeans property syntax
DynamicBeans. The syntax supported is that supportedby
DynamicBeans.getSubPropertyValue(java.lang.Object, java.lang.String). For
example, "{0.absoluteName}" or
"{0.addresses[0].city}".
Created: August 21 2008
| Field Summary | |
|---|---|
static java.lang.String |
CLASS_VERSION
Class version string |
| Fields inherited from interface atg.nucleus.logging.ApplicationLogging |
|---|
DEFAULT_LOG_DEBUG_STATUS, DEFAULT_LOG_ERROR_STATUS, DEFAULT_LOG_INFO_STATUS, DEFAULT_LOG_WARNING_STATUS |
| Method Summary | |
|---|---|
void |
vlogDebug(java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
Log a resource-based log debug message. |
void |
vlogDebug(java.lang.String pFormat,
java.lang.Object... pArgs)
Log a formatted debug message. |
void |
vlogDebug(java.lang.Throwable pThrowable,
java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
Log a resource-based log debug message. |
void |
vlogDebug(java.lang.Throwable pThrowable,
java.lang.String pFormat,
java.lang.Object... pArgs)
Log a formatted debug message. |
void |
vlogError(java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
Log a resource-based log error message. |
void |
vlogError(java.lang.String pFormat,
java.lang.Object... pArgs)
Log a formatted error message. |
void |
vlogError(java.lang.Throwable pThrowable,
java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
Log a resource-based log error message. |
void |
vlogError(java.lang.Throwable pThrowable,
java.lang.String pFormat,
java.lang.Object... pArgs)
Log a formatted error message. |
void |
vlogInfo(java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
Log a resource-based log info message. |
void |
vlogInfo(java.lang.String pFormat,
java.lang.Object... pArgs)
Log a formatted info message. |
void |
vlogInfo(java.lang.Throwable pThrowable,
java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
Log a resource-based log info message. |
void |
vlogInfo(java.lang.Throwable pThrowable,
java.lang.String pFormat,
java.lang.Object... pArgs)
Log a formatted info message. |
void |
vlogTrace(java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
Log a resource-based log trace message. |
void |
vlogTrace(java.lang.String pFormat,
java.lang.Object... pArgs)
Log a formatted trace message. |
void |
vlogTrace(java.lang.Throwable pThrowable,
java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
Log a resource-based log trace message. |
void |
vlogTrace(java.lang.Throwable pThrowable,
java.lang.String pFormat,
java.lang.Object... pArgs)
Log a formatted trace message. |
void |
vlogWarning(java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
Log a resource-based log warning message. |
void |
vlogWarning(java.lang.String pFormat,
java.lang.Object... pArgs)
Log a formatted warning message. |
void |
vlogWarning(java.lang.Throwable pThrowable,
java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
Log a resource-based log warning message. |
void |
vlogWarning(java.lang.Throwable pThrowable,
java.lang.String pFormat,
java.lang.Object... pArgs)
Log a formatted warning message. |
| Methods inherited from interface atg.nucleus.logging.ApplicationLogging |
|---|
isLoggingDebug, isLoggingError, isLoggingInfo, isLoggingWarning, logDebug, logDebug, logDebug, logError, logError, logError, logInfo, logInfo, logInfo, logWarning, logWarning, logWarning, setLoggingDebug, setLoggingError, setLoggingInfo, setLoggingWarning |
| Field Detail |
|---|
static final java.lang.String CLASS_VERSION
| Method Detail |
|---|
void vlogDebug(java.lang.Throwable pThrowable,
java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
pThrowable - the exception to be logged. Will be logged after the message.pBundle - The resoure bundle.pKey - the resource key in the bundle to use as a format string.pArgs - the format arguments needed by the key's format string.
void vlogDebug(java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
pBundle - The resoure bundle.pKey - the resource key in the bundle to use as a format string.pArgs - the format arguments needed by the key's format string.
void vlogDebug(java.lang.Throwable pThrowable,
java.lang.String pFormat,
java.lang.Object... pArgs)
pThrowable - the exception to be logged. Will be logged after the message.pFormat - The format string to use. Uses MessageFormat to render.pArgs - the format arguments needed by the key's format string.
void vlogDebug(java.lang.String pFormat,
java.lang.Object... pArgs)
pFormat - The format string to use. Uses MessageFormat to render.pArgs - the format arguments needed by the key's format string.
void vlogError(java.lang.Throwable pThrowable,
java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
pThrowable - the exception to be logged. Will be logged after the message.pBundle - The resoure bundle.pKey - the resource key in the bundle to use as a format string.pArgs - the format arguments needed by the key's format string.
void vlogError(java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
pBundle - The resoure bundle.pKey - the resource key in the bundle to use as a format string.pArgs - the format arguments needed by the key's format string.
void vlogError(java.lang.Throwable pThrowable,
java.lang.String pFormat,
java.lang.Object... pArgs)
pThrowable - the exception to be logged. Will be logged after the message.pFormat - The format string to use. Uses MessageFormat to render.pArgs - the format arguments needed by the key's format string.
void vlogError(java.lang.String pFormat,
java.lang.Object... pArgs)
pFormat - The format string to use. Uses MessageFormat to render.pArgs - the format arguments needed by the key's format string.
void vlogInfo(java.lang.Throwable pThrowable,
java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
pThrowable - the exception to be logged. Will be logged after the message.pBundle - The resoure bundle.pKey - the resource key in the bundle to use as a format string.pArgs - the format arguments needed by the key's format string.
void vlogInfo(java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
pBundle - The resoure bundle.pKey - the resource key in the bundle to use as a format string.pArgs - the format arguments needed by the key's format string.
void vlogInfo(java.lang.Throwable pThrowable,
java.lang.String pFormat,
java.lang.Object... pArgs)
pThrowable - the exception to be logged. Will be logged after the message.pFormat - The format string to use. Uses MessageFormat to render.pArgs - the format arguments needed by the key's format string.
void vlogInfo(java.lang.String pFormat,
java.lang.Object... pArgs)
pFormat - The format string to use. Uses MessageFormat to render.pArgs - the format arguments needed by the key's format string.
void vlogTrace(java.lang.Throwable pThrowable,
java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
pThrowable - the exception to be logged. Will be logged after the message.pBundle - The resoure bundle.pKey - the resource key in the bundle to use as a format string.pArgs - the format arguments needed by the key's format string.
void vlogTrace(java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
pBundle - The resoure bundle.pKey - the resource key in the bundle to use as a format string.pArgs - the format arguments needed by the key's format string.
void vlogTrace(java.lang.Throwable pThrowable,
java.lang.String pFormat,
java.lang.Object... pArgs)
pThrowable - the exception to be logged. Will be logged after the message.pFormat - The format string to use. Uses MessageFormat to render.pArgs - the format arguments needed by the key's format string.
void vlogTrace(java.lang.String pFormat,
java.lang.Object... pArgs)
pFormat - The format string to use. Uses MessageFormat to render.pArgs - the format arguments needed by the key's format string.
void vlogWarning(java.lang.Throwable pThrowable,
java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
pThrowable - the exception to be logged. Will be logged after the message.pBundle - The resoure bundle.pKey - the resource key in the bundle to use as a format string.pArgs - the format arguments needed by the key's format string.
void vlogWarning(java.util.ResourceBundle pBundle,
java.lang.String pKey,
java.lang.Object... pArgs)
pBundle - The resoure bundle.pKey - the resource key in the bundle to use as a format string.pArgs - the format arguments needed by the key's format string.
void vlogWarning(java.lang.Throwable pThrowable,
java.lang.String pFormat,
java.lang.Object... pArgs)
pThrowable - the exception to be logged. Will be logged after the message.pFormat - The format string to use. Uses MessageFormat to render.pArgs - the format arguments needed by the key's format string.
void vlogWarning(java.lang.String pFormat,
java.lang.Object... pArgs)
pFormat - The format string to use. Uses MessageFormat to render.pArgs - the format arguments needed by the key's format string.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||