org.apache.commons.logging.impl

Class Log4JCategoryLog

Implemented Interfaces:
Log

public final class Log4JCategoryLog
extends java.lang.Object
implements Log

Implementation of Log that maps directly to a Log4J Category. Initial configuration of the corresponding Category instances should be done in the usual manner, as outlined in the Log4J documentation.
Version:
$Id: Log4JCategoryLog.java,v 1.15 2004/02/28 21:46:45 craigmcc Exp $
Authors:
Scott Sanders
Rod Waldhoff
Robert Burrell Donkin

Field Summary

private static String
FQCN
The fully qualified name of the Log4JCategoryLog class.
private Category
category
Log to this category

Constructor Summary

Log4JCategoryLog()
Log4JCategoryLog(Category category)
For use with a log4j factory.
Log4JCategoryLog(String name)
Base constructor.

Method Summary

void
debug(Object message)
Log a message to the Log4j Category with DEBUG priority.
void
debug(Object message, Throwable t)
Log an error to the Log4j Category with DEBUG priority.
void
error(Object message)
Log a message to the Log4j Category with ERROR priority.
void
error(Object message, Throwable t)
Log an error to the Log4j Category with ERROR priority.
void
fatal(Object message)
Log a message to the Log4j Category with FATAL priority.
void
fatal(Object message, Throwable t)
Log an error to the Log4j Category with FATAL priority.
Category
getCategory()
Return the native Category instance we are using.
void
info(Object message)
Log a message to the Log4j Category with INFO priority.
void
info(Object message, Throwable t)
Log an error to the Log4j Category with INFO priority.
boolean
isDebugEnabled()
Check whether the Log4j Category used is enabled for DEBUG priority.
boolean
isErrorEnabled()
Check whether the Log4j Category used is enabled for ERROR priority.
boolean
isFatalEnabled()
Check whether the Log4j Category used is enabled for FATAL priority.
boolean
isInfoEnabled()
Check whether the Log4j Category used is enabled for INFO priority.
boolean
isTraceEnabled()
Check whether the Log4j Category used is enabled for TRACE priority.
boolean
isWarnEnabled()
Check whether the Log4j Category used is enabled for WARN priority.
void
trace(Object message)
Log a message to the Log4j Category with TRACE priority.
void
trace(Object message, Throwable t)
Log an error to the Log4j Category with TRACE priority.
void
warn(Object message)
Log a message to the Log4j Category with WARN priority.
void
warn(Object message, Throwable t)
Log an error to the Log4j Category with WARN priority.

Field Details

FQCN

private static final String FQCN
The fully qualified name of the Log4JCategoryLog class.

category

private Category category
Log to this category

Constructor Details

Log4JCategoryLog

public Log4JCategoryLog()

Log4JCategoryLog

public Log4JCategoryLog(Category category)
For use with a log4j factory.

Log4JCategoryLog

public Log4JCategoryLog(String name)
Base constructor.

Method Details

debug

public void debug(Object message)
Log a message to the Log4j Category with DEBUG priority.
Specified by:
debug in interface Log

debug

public void debug(Object message,
                  Throwable t)
Log an error to the Log4j Category with DEBUG priority.
Specified by:
debug in interface Log

error

public void error(Object message)
Log a message to the Log4j Category with ERROR priority.
Specified by:
error in interface Log

error

public void error(Object message,
                  Throwable t)
Log an error to the Log4j Category with ERROR priority.
Specified by:
error in interface Log

fatal

public void fatal(Object message)
Log a message to the Log4j Category with FATAL priority.
Specified by:
fatal in interface Log

fatal

public void fatal(Object message,
                  Throwable t)
Log an error to the Log4j Category with FATAL priority.
Specified by:
fatal in interface Log

getCategory

public Category getCategory()
Return the native Category instance we are using.

info

public void info(Object message)
Log a message to the Log4j Category with INFO priority.
Specified by:
info in interface Log

info

public void info(Object message,
                 Throwable t)
Log an error to the Log4j Category with INFO priority.
Specified by:
info in interface Log

isDebugEnabled

public boolean isDebugEnabled()
Check whether the Log4j Category used is enabled for DEBUG priority.
Specified by:
isDebugEnabled in interface Log

isErrorEnabled

public boolean isErrorEnabled()
Check whether the Log4j Category used is enabled for ERROR priority.
Specified by:
isErrorEnabled in interface Log

isFatalEnabled

public boolean isFatalEnabled()
Check whether the Log4j Category used is enabled for FATAL priority.
Specified by:
isFatalEnabled in interface Log

isInfoEnabled

public boolean isInfoEnabled()
Check whether the Log4j Category used is enabled for INFO priority.
Specified by:
isInfoEnabled in interface Log

isTraceEnabled

public boolean isTraceEnabled()
Check whether the Log4j Category used is enabled for TRACE priority. For Log4J, this returns the value of isDebugEnabled()
Specified by:
isTraceEnabled in interface Log

isWarnEnabled

public boolean isWarnEnabled()
Check whether the Log4j Category used is enabled for WARN priority.
Specified by:
isWarnEnabled in interface Log

trace

public void trace(Object message)
Log a message to the Log4j Category with TRACE priority. Currently logs to DEBUG level in Log4J.
Specified by:
trace in interface Log

trace

public void trace(Object message,
                  Throwable t)
Log an error to the Log4j Category with TRACE priority. Currently logs to DEBUG level in Log4J.
Specified by:
trace in interface Log

warn

public void warn(Object message)
Log a message to the Log4j Category with WARN priority.
Specified by:
warn in interface Log

warn

public void warn(Object message,
                 Throwable t)
Log an error to the Log4j Category with WARN priority.
Specified by:
warn in interface Log

Copyright 2002-2004 The Apache Software Foundation.