org.apache.turbine.util
Class Log

java.lang.Object
  extended byorg.apache.turbine.util.Log

Deprecated. Use the commons.logging system for logging

public class Log
extends java.lang.Object

A facade class for Turbine Logging Use this class to conveniently access the system logging facility.

Version:
$Id: Log.java 264148 2005-08-29 14:21:04Z henning $
Author:
Tomasz Zielinski,
Constructor Summary
Log()
          Deprecated.  
 
Method Summary
static void debug(java.lang.String message)
          Deprecated. Use the commons.logging system for logging
static void debug(java.lang.String logName, java.lang.String message)
          Deprecated. Use the commons.logging system for logging
static void debug(java.lang.String logName, java.lang.String message, java.lang.Throwable t)
          Deprecated. Use the commons.logging system for logging
static void debug(java.lang.String message, java.lang.Throwable t)
          Deprecated. Use the commons.logging system for logging
static void error(java.lang.String message)
          Deprecated. Use the commons.logging system for logging
static void error(java.lang.String logName, java.lang.String message)
          Deprecated. Use the commons.logging system for logging
static void error(java.lang.String logName, java.lang.String message, java.lang.Throwable t)
          Deprecated. Use the commons.logging system for logging
static void error(java.lang.String message, java.lang.Throwable t)
          Deprecated. Use the commons.logging system for logging
static void error(java.lang.Throwable e)
          Deprecated. Use the commons.logging system for logging
static org.apache.commons.logging.Log getLogger()
          Deprecated. Use the commons.logging system for logging
static org.apache.commons.logging.Log getLogger(java.lang.String logName)
          Deprecated. Use the commons.logging system for logging
static void info(java.lang.String message)
          Deprecated. Use the commons.logging system for logging
static void info(java.lang.String logName, java.lang.String message)
          Deprecated. Use the commons.logging system for logging
static void info(java.lang.String logName, java.lang.String message, java.lang.Throwable t)
          Deprecated. Use the commons.logging system for logging
static void info(java.lang.String message, java.lang.Throwable t)
          Deprecated. Use the commons.logging system for logging
static void warn(java.lang.String message)
          Deprecated. Use the commons.logging system for logging
static void warn(java.lang.String logName, java.lang.String message)
          Deprecated. Use the commons.logging system for logging
static void warn(java.lang.String logName, java.lang.String message, java.lang.Throwable t)
          Deprecated. Use the commons.logging system for logging
static void warn(java.lang.String message, java.lang.Throwable t)
          Deprecated. Use the commons.logging system for logging
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Log

public Log()
Deprecated. 
Method Detail

getLogger

public static org.apache.commons.logging.Log getLogger()
Deprecated. Use the commons.logging system for logging

This method returns default logger for Turbine System

Returns:
The default logger for system.

getLogger

public static org.apache.commons.logging.Log getLogger(java.lang.String logName)
Deprecated. Use the commons.logging system for logging

This method returns logger with given name if such logger exists, or the default logger.

Returns:
The default logger for system.

debug

public static void debug(java.lang.String message)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == DEBUG, printing is done by the default logger


debug

public static void debug(java.lang.String message,
                         java.lang.Throwable t)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == DEBUG, printing is done by the default logger


debug

public static void debug(java.lang.String logName,
                         java.lang.String message,
                         java.lang.Throwable t)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == DEBUG, printing is done by the given logger


debug

public static void debug(java.lang.String logName,
                         java.lang.String message)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == DEBUG, printing is done by the given logger


info

public static void info(java.lang.String message)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == INFO, printing is done by the default logger


info

public static void info(java.lang.String message,
                        java.lang.Throwable t)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == INFO, printing is done by the default logger


info

public static void info(java.lang.String logName,
                        java.lang.String message)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == INFO, printing is done by the given logger


info

public static void info(java.lang.String logName,
                        java.lang.String message,
                        java.lang.Throwable t)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == INFO, printing is done by the given logger


warn

public static void warn(java.lang.String message)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == WARN, printing is done by the default logger


warn

public static void warn(java.lang.String message,
                        java.lang.Throwable t)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == WARN, printing is done by the default logger


warn

public static void warn(java.lang.String logName,
                        java.lang.String message)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == WARN, printing is done by the given logger


warn

public static void warn(java.lang.String logName,
                        java.lang.String message,
                        java.lang.Throwable t)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == WARN, printing is done by the given logger


error

public static void error(java.lang.String message)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == ERROR, printing is done by the default logger


error

public static void error(java.lang.String message,
                         java.lang.Throwable t)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == ERROR, printing is done by the default logger


error

public static void error(java.lang.String logName,
                         java.lang.String message)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == ERROR, printing is done by the given logger


error

public static void error(java.lang.String logName,
                         java.lang.String message,
                         java.lang.Throwable t)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == ERROR, printing is done by the given logger


error

public static void error(java.lang.Throwable e)
Deprecated. Use the commons.logging system for logging

This is a log method with logLevel == ERROR, printing is done by the default logger



Copyright © 2000-2005 Apache Software Foundation. All Rights Reserved.