Oracle Fusion Middleware Java API Reference for Oracle Mobile Application Framework
2.0.0.0.0

E36392-01

oracle.adfmf.util.logging
Class Trace

Object
  extended by oracle.adfmf.util.logging.Trace

public class Trace
extends Object


Method Summary
static void log(com.sun.util.logging.Logger logger, Class callingClass, String methodName, Throwable t)
          Log a Throwable via com.sun.util.logging
static void log(com.sun.util.logging.Logger logger, com.sun.util.logging.Level priority, Class callingClass, String callingMethod, Class resourceBundle, String resourceKey)
          Log a message contained in a ResourceBundle
static void log(com.sun.util.logging.Logger logger, com.sun.util.logging.Level priority, Class callingClass, String callingMethod, Class bundleClass, String resourceKey, Object[] params)
          Log a message contained in a ResourceBundle
static void log(com.sun.util.logging.Logger logger, com.sun.util.logging.Level priority, Class callingClass, String methodName, Object msg)
          Log a message via com.sun.util.logging
static void log(com.sun.util.logging.Logger logger, com.sun.util.logging.Level priority, Class callingClass, String callingMethod, java.util.ResourceBundle resourceBundle, String resourceKey, Object[] params)
          Log a message contained in a ResourceBundle
static void log(com.sun.util.logging.Logger logger, com.sun.util.logging.Level priority, Class callingClass, String methodName, String msg, Object[] params)
          Log an optionally formatted message string via com.sun.util.logging
static void log(com.sun.util.logging.Logger logger, com.sun.util.logging.Level priority, Class callingClass, String callingMethod, String bundleName, String resourceKey)
          Log a message contained in a ResourceBundle
static void log(com.sun.util.logging.Logger logger, com.sun.util.logging.Level priority, Class callingClass, String callingMethod, String bundleName, String resourceKey, Object[] params)
          Log a message contained in a ResourceBundle
static void log(com.sun.util.logging.Logger logger, com.sun.util.logging.Level priority, Class callingClass, String methodName, Throwable t)
          Log a Throwable via com.sun.util.logging
static void log(String loggerName, Class callingClass, String methodName, Throwable t)
          Log a Throwable via com.sun.util.logging
static void log(String loggerName, com.sun.util.logging.Level priority, Class callingClass, String callingMethod, Class resourceBundle, String resourceKey)
          Log a message contained in a ResourceBundle
static void log(String loggerName, com.sun.util.logging.Level priority, Class callingClass, String callingMethod, Class bundleClass, String resourceKey, Object[] params)
          Log a message contained in a ResourceBundle
static void log(String loggerName, com.sun.util.logging.Level priority, Class callingClass, String methodName, Object msg)
          Log a message via com.sun.util.logging
static void log(String loggerName, com.sun.util.logging.Level priority, Class callingClass, String callingMethod, java.util.ResourceBundle resourceBundle, String resourceKey, Object[] params)
          Log a message contained in a ResourceBundle
static void log(String loggerName, com.sun.util.logging.Level priority, Class callingClass, String methodName, String msg, Object[] params)
          Log an optionally formatted message string via com.sun.util.logging
static void log(String loggerName, com.sun.util.logging.Level priority, Class callingClass, String callingMethod, String bundleName, String resourceKey)
          Log a message contained in a ResourceBundle
static void log(String loggerName, com.sun.util.logging.Level priority, Class callingClass, String callingMethod, String bundleName, String resourceKey, Object[] params)
          Log a message contained in a ResourceBundle
static void log(String loggerName, com.sun.util.logging.Level priority, Class callingClass, String methodName, Throwable t)
          Log a Throwable via com.sun.util.logging
 
Methods inherited from class Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

log

public static final void log(String loggerName,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String methodName,
                             Object msg)
Log a message via com.sun.util.logging

Parameters:
loggerName - Name of logger.
priority - e.g. Level.INFO
callingClass - Class object for calling class
methodName - Name of method making the call
msg - An Object to print via its toString() method

log

public static final void log(com.sun.util.logging.Logger logger,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String methodName,
                             Object msg)
Log a message via com.sun.util.logging

Parameters:
logger - The logger to use.
priority - e.g. Level.INFO
callingClass - Class object for calling class
methodName - Name of method making the call
msg - An Object to print via its toString() method

log

public static final void log(String loggerName,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String methodName,
                             Throwable t)
Log a Throwable via com.sun.util.logging

Parameters:
loggerName - Name of logger.
priority - e.g. Level.INFO
callingClass - Class object for calling class
methodName - Name of method making the call
t - The exception object to log

log

public static final void log(com.sun.util.logging.Logger logger,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String methodName,
                             Throwable t)
Log a Throwable via com.sun.util.logging

Parameters:
logger - The logger to use.
priority - e.g. Level.INFO
callingClass - Class object for calling class
methodName - Name of method making the call
t - The exception object to log

log

public static final void log(String loggerName,
                             Class callingClass,
                             String methodName,
                             Throwable t)
Log a Throwable via com.sun.util.logging

Parameters:
loggerName - Name of logger.
callingClass - Class object for calling class
methodName - Name of method making the call
t - The exception object to log

log

public static final void log(com.sun.util.logging.Logger logger,
                             Class callingClass,
                             String methodName,
                             Throwable t)
Log a Throwable via com.sun.util.logging

Parameters:
logger - The logger to use.
callingClass - Class object for calling class
methodName - Name of method making the call
t - The exception object to log

log

public static final void log(String loggerName,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String callingMethod,
                             Class bundleClass,
                             String resourceKey,
                             Object[] params)
Log a message contained in a ResourceBundle

Parameters:
loggerName - Name of logger.
priority - e.g. Level.INFO
callingClass - Class object for calling class
callingMethod - Name of method making the call
bundleClass - Class of the bundle to retrieve
resourceKey - Message key
params - Parameters that the message consumes

log

public static final void log(com.sun.util.logging.Logger logger,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String callingMethod,
                             Class bundleClass,
                             String resourceKey,
                             Object[] params)
Log a message contained in a ResourceBundle

Parameters:
logger - The logger to use.
priority - e.g. Level.INFO
callingClass - Class object for calling class
callingMethod - Name of method making the call
bundleClass - Class of the bundle to retrieve
resourceKey - Message key
params - Parameters that the message consumes

log

public static final void log(String loggerName,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String callingMethod,
                             String bundleName,
                             String resourceKey)
Log a message contained in a ResourceBundle

Parameters:
loggerName - Name of logger.
priority - e.g. Level.INFO
callingClass - Class object for calling class
callingMethod - Name of method making the call
bundleName - Name of the bundle to retrieve
resourceKey - Message key

log

public static final void log(com.sun.util.logging.Logger logger,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String callingMethod,
                             String bundleName,
                             String resourceKey)
Log a message contained in a ResourceBundle

Parameters:
logger - The logger to use.
priority - e.g. Level.INFO
callingClass - Class object for calling class
callingMethod - Name of method making the call
bundleName - Name of the bundle to retrieve
resourceKey - Message key

log

public static final void log(String loggerName,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String callingMethod,
                             String bundleName,
                             String resourceKey,
                             Object[] params)
Log a message contained in a ResourceBundle

Parameters:
loggerName - Name of logger.
priority - e.g. Level.INFO
callingClass - Class object for calling class
callingMethod - Name of method making the call
bundleName - Name of the bundle to retrieve
resourceKey - Message key
params - Parameters that the message consumes

log

public static final void log(com.sun.util.logging.Logger logger,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String callingMethod,
                             String bundleName,
                             String resourceKey,
                             Object[] params)
Log a message contained in a ResourceBundle

Parameters:
logger - The logger to use.
priority - e.g. Level.INFO
callingClass - Class object for calling class
callingMethod - Name of method making the call
bundleName - Name of the bundle to retrieve
resourceKey - Message key
params - Parameters that the message consumes

log

public static final void log(String loggerName,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String callingMethod,
                             java.util.ResourceBundle resourceBundle,
                             String resourceKey,
                             Object[] params)
Log a message contained in a ResourceBundle

Parameters:
loggerName - Name of logger.
priority - e.g. Level.INFO
callingClass - Class object for calling class
callingMethod - Name of method making the call
resourceBundle - The resource bundle to use
resourceKey - Message key
params - Parameters that the message consumes

log

public static final void log(com.sun.util.logging.Logger logger,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String callingMethod,
                             java.util.ResourceBundle resourceBundle,
                             String resourceKey,
                             Object[] params)
Log a message contained in a ResourceBundle

Parameters:
logger - The logger to use.
priority - e.g. Level.INFO
callingClass - Class object for calling class
callingMethod - Name of method making the call
resourceBundle - The resource bundle to use
resourceKey - Message key
params - Parameters that the message consumes

log

public static final void log(String loggerName,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String callingMethod,
                             Class resourceBundle,
                             String resourceKey)
Log a message contained in a ResourceBundle

Parameters:
loggerName - Name of logger.
priority - e.g. Level.INFO
callingClass - Class object for calling class
callingMethod - Name of method making the call
resourceBundle - Class of the bundle to retrieve
resourceKey - Message key

log

public static final void log(com.sun.util.logging.Logger logger,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String callingMethod,
                             Class resourceBundle,
                             String resourceKey)
Log a message contained in a ResourceBundle

Parameters:
logger - The logger to use.
priority - e.g. Level.INFO
callingClass - Class object for calling class
callingMethod - Name of method making the call
resourceBundle - Class of the bundle to retrieve
resourceKey - Message key

log

public static final void log(String loggerName,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String methodName,
                             String msg,
                             Object[] params)
Log an optionally formatted message string via com.sun.util.logging

Parameters:
loggerName - Name of logger.
priority - e.g. Level.INFO
callingClass - Class object for calling class
methodName - Name of method making the call
msg - An Object to print via its toString() method
params - Parameters that the message consumes

log

public static final void log(com.sun.util.logging.Logger logger,
                             com.sun.util.logging.Level priority,
                             Class callingClass,
                             String methodName,
                             String msg,
                             Object[] params)
Log an optionally formatted message string via com.sun.util.logging

Parameters:
logger - The logger to use.
priority - e.g. Level.INFO
callingClass - Class object for calling class
methodName - Name of method making the call
msg - An Object to print via its toString() method
params - Parameters that the message consumes

Oracle Fusion Middleware Java API Reference for Oracle Mobile Application Framework
2.0.0.0.0

E36392-01

Copyright © 2014 Oracle. All Rights Reserved.