public class DefaultFunctionalLogger extends oracle.adf.share.logging.ADFLogger implements FunctionalLogger
Default implementation of interface FunctionalLogger.
It will keep track of its ongoing functional activities by maintaining an internal activity stack. The top of the stack will always be considered the current activity.
Calling close() will cause the logger to automatically and orderly end
 all activities pending in the stack, if any, from top to bottom.
The logger instance will become unusable after closed.
| Modifier and Type | Class and Description | 
|---|---|
| protected static class  | DefaultFunctionalLogger.ActivitySimple java bean wrapping properties of functional activity started by
 the logger. | 
ADD_CONTEXT_DATA_TAG, ADD_REQUEST_MESSAGE_TAG, ADF_ANALYTICS_LOGGER_NAME, ADF_COMPONENT_NAME, ADF_LOGGER_MESSAGE_BUNDLE, ADF_MESSAGE_ACTION_DESC, ADF_MESSAGE_ACTION_NAME, ADF_MESSAGE_CONTEXT_DATA, ADF_MESSAGE_DEFAULT_CONTEXT_DATA, ADF_MESSAGE_DELIMITER, ADF_MESSAGE_PAYLOAD, ADF_MESSAGE_STATUS, ADF_NODE_END, ADF_PERF_LOGGER_NAME, ADF_REQUEST_END, ADF_WEB_REQUEST, ENTERING_TAG, ENTERRING_TAG, ERROR, EXITING_TAG, INTERNAL_ERROR, NOTIFICATION, TRACE, WARNINGLEVELLEVELLEVELLEVELLEVELLEVELLEVEL| Modifier | Constructor and Description | 
|---|---|
| protected  | DefaultFunctionalLogger(java.lang.String loggerName,
                       java.lang.String componentName,
                       java.lang.String resourceBundle) | 
| Modifier and Type | Method and Description | 
|---|---|
| void | addContextData(java.util.logging.Level level,
              java.util.Map<java.lang.String,java.lang.String> contextData)This method will add the given context data map's content to the current
 functional activity started by the latest call to beginActivity. | 
| void | addContextData(java.util.logging.Level level,
              java.lang.String name,
              java.lang.String value)This method will add the given name/value pair as additional context data
 to the current functional activity started by the latest call to beginActivity. | 
| void | addContextData(java.util.Map<java.lang.String,java.lang.String> contextData)This method will add the given context data map's content to the current
 functional activity started by the latest call to beginActivity. | 
| void | addContextData(java.lang.String name,
              java.lang.String value)This method will add the given name/value pair as additional context data
 to the current functional activity started by the latest call to beginActivity. | 
| protected boolean | assertLoggable(java.util.logging.Level level)Equivalent to calling both  assertOpened()andADFLogger.isLoggable(Level)in sequence. | 
| protected void | assertOpened()Assert that the logger instance is open. | 
| void | beginActivity(java.util.logging.Level level,
             java.lang.String activity)This method will start a new functional activity section in the log,
 if and only if the the logger is currently set to publish messages at the
 specified level. | 
| void | beginActivity(java.util.logging.Level level,
             java.lang.String activity,
             java.util.Map<java.lang.String,java.lang.String> contextData)This method will start a new functional activity section in the log,
 if and only if the the logger is currently set to publish messages at the
 specified level. | 
| protected void | captureErrorData(java.lang.Throwable error,
                java.util.Map<java.lang.String,java.lang.String> contextData)Capture relevant data from the given error in the given context data map | 
| void | close()This method is mainly intended to be called by the ContextualLoggingManager
 when the logger is being removed from the context. | 
| void | config(java.lang.String message)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | config(java.lang.String message,
      java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | config(java.lang.String message,
      java.lang.Throwable error)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | config(java.lang.String message,
      java.lang.Throwable error,
      java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | config(java.lang.Throwable error)Log a message at level , based on the given error. | 
| void | config(java.lang.Throwable error,
      java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , based on the given error. | 
| protected java.util.Map<java.lang.String,java.lang.String> | createContextDataMap() | 
| protected java.util.Map<java.lang.String,java.lang.String> | createContextDataMap(java.util.Map<java.lang.String,java.lang.String> data) | 
| protected void | doAddContextData(DefaultFunctionalLogger.Activity activity,
                java.util.Map<java.lang.String,java.lang.String> contextData) | 
| protected void | doLog(java.util.logging.Level level,
     java.lang.String message,
     java.util.Map<java.lang.String,java.lang.String> contextData) | 
| void | endCurrentActivity()This method will mark the end of the current functional activity section in the log. | 
| void | endCurrentActivity(java.util.Map<java.lang.String,java.lang.String> contextData)This method will mark the end of the current functional activity section in the log. | 
| void | endCurrentActivity(java.lang.Throwable error)This method will mark the end of the current functional activity section in the log,
 adding details of the given error as context data to the ending activity. | 
| void | endCurrentActivity(java.lang.Throwable error,
                  java.util.Map<java.lang.String,java.lang.String> contextData)This method will mark the end of the current functional activity section in the log,
 adding details of the given error plus the given context data map's content to the
 ending functional activity. | 
| void | fine(java.lang.String message)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | fine(java.lang.String message,
    java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | fine(java.lang.String message,
    java.lang.Throwable error)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | fine(java.lang.String message,
    java.lang.Throwable error,
    java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | fine(java.lang.Throwable error)Log a message at level , based on the given error. | 
| void | fine(java.lang.Throwable error,
    java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , based on the given error. | 
| void | finer(java.lang.String message)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | finer(java.lang.String message,
     java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | finer(java.lang.String message,
     java.lang.Throwable error)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | finer(java.lang.String message,
     java.lang.Throwable error,
     java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | finer(java.lang.Throwable error)Log a message at level , based on the given error. | 
| void | finer(java.lang.Throwable error,
     java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , based on the given error. | 
| void | finest(java.lang.String message)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | finest(java.lang.String message,
      java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | finest(java.lang.String message,
      java.lang.Throwable error)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | finest(java.lang.String message,
      java.lang.Throwable error,
      java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | finest(java.lang.Throwable error)Log a message at level , based on the given error. | 
| void | finest(java.lang.Throwable error,
      java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , based on the given error. | 
| java.lang.String | getComponent()Get the logging component name determined by the logger's domain | 
| java.lang.String | getCurrentActivity()Retrieve the name of the current functional activity started by the
 latest call to beginActivity, if any. | 
| protected DefaultFunctionalLogger.Activity | getCurrentActivityWrapper()Get the  DefaultFunctionalLogger.Activitybean containing information about the
 current functional activity. | 
| protected java.lang.Throwable | getRootCause(java.lang.Throwable error)Find the root cause of the given error | 
| void | info(java.lang.String message)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | info(java.lang.String message,
    java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | info(java.lang.String message,
    java.lang.Throwable error)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | info(java.lang.String message,
    java.lang.Throwable error,
    java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | info(java.lang.Throwable error)Log a message at level , based on the given error. | 
| void | info(java.lang.Throwable error,
    java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , based on the given error. | 
| boolean | isConfig()Confirms whether or not the logger is currently set to publish messages
 at level . | 
| boolean | isFine()Confirms whether or not the logger is currently set to publish messages
 at level . | 
| boolean | isFiner()Confirms whether or not the logger is currently set to publish messages
 at level . | 
| boolean | isFinest()Confirms whether or not the logger is currently set to publish messages
 at level . | 
| boolean | isInfo()Confirms whether or not the logger is currently set to publish messages
 at level . | 
| boolean | isSevere()Confirms whether or not the logger is currently set to publish messages
 at level . | 
| boolean | isWarning()Confirms whether or not the logger is currently set to publish messages
 at level . | 
| void | log(java.util.logging.Level level,
   java.lang.String message)Log a message at the specified level, if and only if the logger is currently
 set to publish messages at that level. | 
| void | log(java.util.logging.Level level,
   java.lang.String message,
   java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at the specified level, if and only if the logger is currently
 set to publish messages at that level. | 
| void | log(java.util.logging.Level level,
   java.lang.String message,
   java.lang.Throwable error)Log a message at the specified level, if and only if the logger is currently
 set to publish messages at that level. | 
| void | log(java.util.logging.Level level,
   java.lang.String message,
   java.lang.Throwable error,
   java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at the specified level, if and only if the logger is currently
 set to publish messages at that level. | 
| void | log(java.util.logging.Level level,
   java.lang.Throwable error)Log a message at the specified level, based on the given error,
 if and only if the logger is currently set to publish messages at that level. | 
| void | log(java.util.logging.Level level,
   java.lang.Throwable error,
   java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at the specified level, based on the given error,
 if and only if the logger is currently set to publish messages at that level. | 
| protected void | seedContextData(java.util.Map<java.lang.String,java.lang.String> contextData) | 
| void | severe(java.lang.String message)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | severe(java.lang.String message,
      java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | severe(java.lang.String message,
      java.lang.Throwable error)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | severe(java.lang.String message,
      java.lang.Throwable error,
      java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | severe(java.lang.Throwable error)Log a message at level , based on the given error. | 
| void | severe(java.lang.Throwable error,
      java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , based on the given error. | 
| java.lang.String | toString()Will return the logger's name | 
| void | warning(java.lang.String message)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | warning(java.lang.String message,
       java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | warning(java.lang.String message,
       java.lang.Throwable error)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | warning(java.lang.String message,
       java.lang.Throwable error,
       java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , if and only if the logger is currently
 set to publish messages at that level. | 
| void | warning(java.lang.Throwable error)Log a message at level , based on the given error. | 
| void | warning(java.lang.Throwable error,
       java.util.Map<java.lang.String,java.lang.String> contextData)Log a message at level , based on the given error. | 
addContextData, addContextData, addContextData, addHandler, addRequestMessage, begin, begin, begin, beginRequest, config, config, config, createADFLogger, createADFLogger, createADFLogger, createADFLogger, createADFLogger, createADFLogger, end, end, end, endRequest, entering, entering, entering, exiting, exiting, fine, fine, fine, fine, fine, finer, finer, finer, finer, finer, finest, finest, finest, finest, finest, flush, getAnonymousLogger, getAnonymousLogger, getECID, getFilter, getFormattedMessage, getFormattedMessage, getHandlers, getLevel, getLogger, getName, getParent, getResourceBundle, getResourceBundleName, getUseParentHandlers, info, info, info, info, info, internal, internal, internal, internal, isInternal, isLoggable, log, log, log, log, log, logp, logp, logp, logp, logp, logp, logrb, logrb, logrb, logrb, logrb, removeHandler, setECID, setFilter, setLevel, setParent, setUseParentHandlers, severe, severe, severe, severe, severe, throwing, throwing, warning, warning, warning, warning, warningclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetName, isLoggableprotected DefaultFunctionalLogger(java.lang.String loggerName,
                       java.lang.String componentName,
                       java.lang.String resourceBundle)
public java.lang.String getComponent()
BasicFunctionalLoggergetComponent in interface BasicFunctionalLoggerpublic java.lang.String getCurrentActivity()
BasicFunctionalLoggergetCurrentActivity in interface BasicFunctionalLoggerprotected DefaultFunctionalLogger.Activity getCurrentActivityWrapper()
DefaultFunctionalLogger.Activity bean containing information about the
 current functional activity.public void addContextData(java.lang.String name,
                  java.lang.String value)
BasicFunctionalLoggeraddContextData in interface BasicFunctionalLoggername - Name of the context data propertyvalue - Value of the context data propertypublic void addContextData(java.util.logging.Level level,
                  java.lang.String name,
                  java.lang.String value)
BasicFunctionalLoggeraddContextData in interface BasicFunctionalLoggerlevel - Logging level at which the method will be effectivename - Name of the context data propertyvalue - Value of the context data propertypublic void addContextData(java.util.Map<java.lang.String,java.lang.String> contextData)
BasicFunctionalLoggeraddContextData in interface BasicFunctionalLoggercontextData - Map with context data properties to add to
 the current functional activitypublic void addContextData(java.util.logging.Level level,
                  java.util.Map<java.lang.String,java.lang.String> contextData)
BasicFunctionalLoggeraddContextData in interface BasicFunctionalLoggerlevel - Logging level at which the method will be effectivecontextData - Map with context data properties to add to
 the current functional activityprotected final void doAddContextData(DefaultFunctionalLogger.Activity activity, java.util.Map<java.lang.String,java.lang.String> contextData)
public void log(java.util.logging.Level level,
       java.lang.String message)
BasicLoggerlog in interface BasicLoggerlog in class oracle.adf.share.logging.ADFLoggerlevel - The level which the message should be logged atmessage - The message to be loggedpublic void log(java.util.logging.Level level,
       java.lang.String message,
       java.util.Map<java.lang.String,java.lang.String> contextData)
BasicFunctionalLoggerlog in interface BasicFunctionalLoggerlevel - The level which the message should be logged atmessage - The message to be loggedcontextData - Optional map with context data properties to add to
 the current functional activitypublic void log(java.util.logging.Level level,
       java.lang.String message,
       java.lang.Throwable error)
BasicLoggerlog in interface BasicLoggerlog in class oracle.adf.share.logging.ADFLoggerlevel - The level which the message should be logged atmessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.public void log(java.util.logging.Level level,
       java.lang.Throwable error)
BasicLoggerlog in interface BasicLoggerlevel - The level which the message should be logged aterror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.public void log(java.util.logging.Level level,
       java.lang.Throwable error,
       java.util.Map<java.lang.String,java.lang.String> contextData)
BasicFunctionalLoggerlog in interface BasicFunctionalLoggerlevel - The level which the message should be logged aterror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.contextData - Optional map with context data properties to add to
 the current functional activitypublic void log(java.util.logging.Level level,
       java.lang.String message,
       java.lang.Throwable error,
       java.util.Map<java.lang.String,java.lang.String> contextData)
BasicFunctionalLoggerlog in interface BasicFunctionalLoggerlevel - The level which the message should be logged atmessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.contextData - Optional map with context data properties to add to
 the current functional activitypublic java.lang.String toString()
toString in class java.lang.Objectprotected void captureErrorData(java.lang.Throwable error,
                    java.util.Map<java.lang.String,java.lang.String> contextData)
error - The error which to capture relevant data fromcontextData - The context data map where the captured data will be
 storedprotected final java.lang.Throwable getRootCause(java.lang.Throwable error)
error - The error which to search for the root cause ofprotected final void assertOpened()
close() has not yet been called.java.lang.IllegalStateException - If the logger instance is closedprotected final boolean assertLoggable(java.util.logging.Level level)
assertOpened() and ADFLogger.isLoggable(Level)
 in sequence.level - Level to be verifiedpublic void close()
In this implementation, calling this method will cause the logger to automatically and orderly end all activities pending in the stack, if any, from top to bottom.
The logger instance will become unusable after closed.
close in interface BasicContextualLoggerpublic void beginActivity(java.util.logging.Level level,
                 java.lang.String activity)
BasicFunctionalLoggerbeginActivity in interface BasicFunctionalLoggerlevel - Logging level at which the method will be effectiveactivity - The functional activity's namepublic void beginActivity(java.util.logging.Level level,
                 java.lang.String activity,
                 java.util.Map<java.lang.String,java.lang.String> contextData)
BasicFunctionalLoggerbeginActivity in interface BasicFunctionalLoggerlevel - Logging level at which the method will be effectiveactivity - The functional activity's namecontextData - Optional map with context data properties to add to
 the new functional activitypublic void endCurrentActivity(java.lang.Throwable error)
BasicFunctionalLoggerendCurrentActivity in interface BasicFunctionalLoggererror - Error which to include relevant
 details from. It is up to each implementation to decide which details are relevant.public void endCurrentActivity(java.lang.Throwable error,
                      java.util.Map<java.lang.String,java.lang.String> contextData)
BasicFunctionalLoggerendCurrentActivity in interface BasicFunctionalLoggererror - Error which to include relevant
 details from. It is up to each implementation to decide which details are relevant.contextData - Optional map with context data properties to add to
 the current functional activitypublic void endCurrentActivity()
BasicFunctionalLoggerendCurrentActivity in interface BasicFunctionalLoggerpublic void endCurrentActivity(java.util.Map<java.lang.String,java.lang.String> contextData)
BasicFunctionalLoggerendCurrentActivity in interface BasicFunctionalLoggercontextData - Optional map with context data properties to add to
 the current functional activityprotected void seedContextData(java.util.Map<java.lang.String,java.lang.String> contextData)
protected final java.util.Map<java.lang.String,java.lang.String> createContextDataMap()
protected final java.util.Map<java.lang.String,java.lang.String> createContextDataMap(java.util.Map<java.lang.String,java.lang.String> data)
protected final void doLog(java.util.logging.Level level,
         java.lang.String message,
         java.util.Map<java.lang.String,java.lang.String> contextData)
public void severe(java.lang.String message)
SevereLoggersevere in interface SevereLoggersevere in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggedpublic void severe(java.lang.String message,
          java.lang.Throwable error)
SevereLoggersevere in interface SevereLoggersevere in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.public void severe(java.lang.String message,
          java.lang.Throwable error,
          java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggersevere in interface FunctionalLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void severe(java.lang.String message,
          java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggersevere in interface FunctionalLoggermessage - The message to be loggedcontextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void severe(java.lang.Throwable error)
SevereLoggersevere in interface SevereLoggersevere in class oracle.adf.share.logging.ADFLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.public void severe(java.lang.Throwable error,
          java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggersevere in interface FunctionalLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public boolean isSevere()
SevereLoggerisSevere in interface SevereLoggerisSevere in class oracle.adf.share.logging.ADFLoggerpublic void warning(java.lang.String message)
WarningLoggerwarning in interface WarningLoggerwarning in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggedpublic void warning(java.lang.String message,
           java.lang.Throwable error)
WarningLoggerwarning in interface WarningLoggerwarning in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.public void warning(java.lang.String message,
           java.lang.Throwable error,
           java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerwarning in interface FunctionalLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void warning(java.lang.String message,
           java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerwarning in interface FunctionalLoggermessage - The message to be loggedcontextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void warning(java.lang.Throwable error)
WarningLoggerwarning in interface WarningLoggerwarning in class oracle.adf.share.logging.ADFLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.public void warning(java.lang.Throwable error,
           java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerwarning in interface FunctionalLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public boolean isWarning()
WarningLoggerisWarning in interface WarningLoggerisWarning in class oracle.adf.share.logging.ADFLoggerpublic void info(java.lang.String message)
InfoLoggerinfo in interface InfoLoggerinfo in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggedpublic void info(java.lang.String message,
        java.lang.Throwable error)
InfoLoggerinfo in interface InfoLoggerinfo in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.public void info(java.lang.String message,
        java.lang.Throwable error,
        java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerinfo in interface FunctionalLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void info(java.lang.String message,
        java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerinfo in interface FunctionalLoggermessage - The message to be loggedcontextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void info(java.lang.Throwable error)
InfoLoggerinfo in interface InfoLoggerinfo in class oracle.adf.share.logging.ADFLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.public void info(java.lang.Throwable error,
        java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerinfo in interface FunctionalLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public boolean isInfo()
InfoLoggerisInfo in interface InfoLoggerisInfo in class oracle.adf.share.logging.ADFLoggerpublic void config(java.lang.String message)
ConfigLoggerconfig in interface ConfigLoggerconfig in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggedpublic void config(java.lang.String message,
          java.lang.Throwable error)
ConfigLoggerconfig in interface ConfigLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.public void config(java.lang.String message,
          java.lang.Throwable error,
          java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerconfig in interface FunctionalLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void config(java.lang.Throwable error)
ConfigLoggerconfig in interface ConfigLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.public void config(java.lang.Throwable error,
          java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerconfig in interface FunctionalLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void config(java.lang.String message,
          java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerconfig in interface FunctionalLoggermessage - The message to be loggedcontextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public boolean isConfig()
ConfigLoggerisConfig in interface ConfigLoggerisConfig in class oracle.adf.share.logging.ADFLoggerpublic void fine(java.lang.String message)
FineLoggerfine in interface FineLoggerfine in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggedpublic void fine(java.lang.String message,
        java.lang.Throwable error)
FineLoggerfine in interface FineLoggerfine in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.public void fine(java.lang.String message,
        java.lang.Throwable error,
        java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerfine in interface FunctionalLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void fine(java.lang.String message,
        java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerfine in interface FunctionalLoggermessage - The message to be loggedcontextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void fine(java.lang.Throwable error)
FineLoggerfine in interface FineLoggerfine in class oracle.adf.share.logging.ADFLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.public void fine(java.lang.Throwable error,
        java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerfine in interface FunctionalLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public boolean isFine()
FineLoggerisFine in interface FineLoggerisFine in class oracle.adf.share.logging.ADFLoggerpublic void finer(java.lang.String message)
FinerLoggerfiner in interface FinerLoggerfiner in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggedpublic void finer(java.lang.String message,
         java.lang.Throwable error)
FinerLoggerfiner in interface FinerLoggerfiner in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.public void finer(java.lang.String message,
         java.lang.Throwable error,
         java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerfiner in interface FunctionalLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void finer(java.lang.String message,
         java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerfiner in interface FunctionalLoggermessage - The message to be loggedcontextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void finer(java.lang.Throwable error)
FinerLoggerfiner in interface FinerLoggerfiner in class oracle.adf.share.logging.ADFLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.public void finer(java.lang.Throwable error,
         java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerfiner in interface FunctionalLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public boolean isFiner()
FinerLoggerisFiner in interface FinerLoggerisFiner in class oracle.adf.share.logging.ADFLoggerpublic void finest(java.lang.String message)
FinestLoggerfinest in interface FinestLoggerfinest in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggedpublic void finest(java.lang.String message,
          java.lang.Throwable error)
FinestLoggerfinest in interface FinestLoggerfinest in class oracle.adf.share.logging.ADFLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.public void finest(java.lang.String message,
          java.lang.Throwable error,
          java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerfinest in interface FunctionalLoggermessage - The message to be loggederror - Error which to include relevant details from. It is up to
 each implementation to decide which details are relevant.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void finest(java.lang.String message,
          java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerfinest in interface FunctionalLoggermessage - The message to be loggedcontextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public void finest(java.lang.Throwable error)
FinestLoggerfinest in interface FinestLoggerfinest in class oracle.adf.share.logging.ADFLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.public void finest(java.lang.Throwable error,
          java.util.Map<java.lang.String,java.lang.String> contextData)
FunctionalLoggerfinest in interface FunctionalLoggererror - Error which to derive the log message and also include relevant
 details from. It is up to each implementation to decide the log message and
 which details are relevant to include.contextData - Optional contextual data map to be added
 to the message as part of the value for supplemental attribute "ADF_MESSAGE_CONTEXT_DATA"public boolean isFinest()
FinestLoggerisFinest in interface FinestLoggerisFinest in class oracle.adf.share.logging.ADFLogger