Class LogFactory

java.lang.Object
oracle.stellent.ridc.common.log.LogFactory

public class LogFactory extends Object
Calls into the currently active ILogProvider to obtain log objects.
  • Constructor Details

    • LogFactory

      public LogFactory()
  • Method Details

    • setLogProvider

      public static void setLogProvider(ILogProvider logProvider)
      Set the log provider. Note: this should be called before other classes access the LogFactory.
      Parameters:
      logProvider - the log provider
    • getLog

      public static ILog getLog(Class type)
      Obtain the logging object via the provider
      Parameters:
      type - the class name; uses the full class name as the log name
      Returns:
      the log object
      See Also:
    • getLog

      public static ILog getLog(String name)
      Obtain the logging object via the provider
      Parameters:
      name - the log name
      Returns:
      the log object
      See Also: