org.apache.commons.logging.impl
Class Jdk13LumberjackLogger

java.lang.Object
  extended byorg.apache.commons.logging.impl.Jdk13LumberjackLogger
All Implemented Interfaces:
Log, java.io.Serializable

public class Jdk13LumberjackLogger
extends java.lang.Object
implements Log, java.io.Serializable

Implementation of the org.apache.commons.logging.Log interface that wraps the standard JDK logging mechanisms that are available in SourceForge's Lumberjack for JDKs prior to 1.4.

Version:
$Revision: 1.6 $ $Date: 2004/06/06 21:13:43 $
Author:
Scott Sanders, Berin Loritsch, Peter Donald, Vince Eagen
See Also:
Serialized Form

Field Summary
private  boolean classAndMethodFound
           
protected  java.util.logging.Logger logger
          The underlying Logger implementation we are using.
protected  java.lang.String name
           
private  java.lang.String sourceClassName
           
private  java.lang.String sourceMethodName
           
 
Constructor Summary
Jdk13LumberjackLogger(java.lang.String name)
          Construct a named instance of this Logger.
 
Method Summary
 void debug(java.lang.Object message)
          Log a message with debug log level.
 void debug(java.lang.Object message, java.lang.Throwable exception)
          Log a message and exception with debug log level.
 void error(java.lang.Object message)
          Log a message with error log level.
 void error(java.lang.Object message, java.lang.Throwable exception)
          Log a message and exception with error log level.
 void fatal(java.lang.Object message)
          Log a message with fatal log level.
 void fatal(java.lang.Object message, java.lang.Throwable exception)
          Log a message and exception with fatal log level.
private  void getClassAndMethod()
          Gets the class and method by looking at the stack trace for the first entry that is not this class.
 java.util.logging.Logger getLogger()
          Return the native Logger instance we are using.
 void info(java.lang.Object message)
          Log a message with info log level.
 void info(java.lang.Object message, java.lang.Throwable exception)
          Log a message and exception with info log level.
 boolean isDebugEnabled()
          Is debug logging currently enabled?
 boolean isErrorEnabled()
          Is error logging currently enabled?
 boolean isFatalEnabled()
          Is fatal logging currently enabled?
 boolean isInfoEnabled()
          Is info logging currently enabled?
 boolean isTraceEnabled()
          Is trace logging currently enabled?
 boolean isWarnEnabled()
          Is warn logging currently enabled?
private  void log(java.util.logging.Level level, java.lang.String msg, java.lang.Throwable ex)
           
 void trace(java.lang.Object message)
          Log a message with trace log level.
 void trace(java.lang.Object message, java.lang.Throwable exception)
          Log a message and exception with trace log level.
 void warn(java.lang.Object message)
          Log a message with warn log level.
 void warn(java.lang.Object message, java.lang.Throwable exception)
          Log a message and exception with warn log level.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

logger

protected transient java.util.logging.Logger logger
The underlying Logger implementation we are using.


name

protected java.lang.String name

sourceClassName

private java.lang.String sourceClassName

sourceMethodName

private java.lang.String sourceMethodName

classAndMethodFound

private boolean classAndMethodFound
Constructor Detail

Jdk13LumberjackLogger

public Jdk13LumberjackLogger(java.lang.String name)
Construct a named instance of this Logger.

Parameters:
name - Name of the logger to be constructed
Method Detail

log

private void log(java.util.logging.Level level,
                 java.lang.String msg,
                 java.lang.Throwable ex)

getClassAndMethod

private void getClassAndMethod()

Gets the class and method by looking at the stack trace for the first entry that is not this class.


debug

public void debug(java.lang.Object message)
Log a message with debug log level.

Specified by:
debug in interface Log
Parameters:
message - log this message

debug

public void debug(java.lang.Object message,
                  java.lang.Throwable exception)
Log a message and exception with debug log level.

Specified by:
debug in interface Log
Parameters:
message - log this message
exception - log this cause

error

public void error(java.lang.Object message)
Log a message with error log level.

Specified by:
error in interface Log
Parameters:
message - log this message

error

public void error(java.lang.Object message,
                  java.lang.Throwable exception)
Log a message and exception with error log level.

Specified by:
error in interface Log
Parameters:
message - log this message
exception - log this cause

fatal

public void fatal(java.lang.Object message)
Log a message with fatal log level.

Specified by:
fatal in interface Log
Parameters:
message - log this message

fatal

public void fatal(java.lang.Object message,
                  java.lang.Throwable exception)
Log a message and exception with fatal log level.

Specified by:
fatal in interface Log
Parameters:
message - log this message
exception - log this cause

getLogger

public java.util.logging.Logger getLogger()
Return the native Logger instance we are using.


info

public void info(java.lang.Object message)
Log a message with info log level.

Specified by:
info in interface Log
Parameters:
message - log this message

info

public void info(java.lang.Object message,
                 java.lang.Throwable exception)
Log a message and exception with info log level.

Specified by:
info in interface Log
Parameters:
message - log this message
exception - log this cause

isDebugEnabled

public boolean isDebugEnabled()
Is debug logging currently enabled?

Specified by:
isDebugEnabled in interface Log

isErrorEnabled

public boolean isErrorEnabled()
Is error logging currently enabled?

Specified by:
isErrorEnabled in interface Log

isFatalEnabled

public boolean isFatalEnabled()
Is fatal logging currently enabled?

Specified by:
isFatalEnabled in interface Log

isInfoEnabled

public boolean isInfoEnabled()
Is info logging currently enabled?

Specified by:
isInfoEnabled in interface Log

isTraceEnabled

public boolean isTraceEnabled()
Is trace logging currently enabled?

Specified by:
isTraceEnabled in interface Log

isWarnEnabled

public boolean isWarnEnabled()
Is warn logging currently enabled?

Specified by:
isWarnEnabled in interface Log

trace

public void trace(java.lang.Object message)
Log a message with trace log level.

Specified by:
trace in interface Log
Parameters:
message - log this message

trace

public void trace(java.lang.Object message,
                  java.lang.Throwable exception)
Log a message and exception with trace log level.

Specified by:
trace in interface Log
Parameters:
message - log this message
exception - log this cause

warn

public void warn(java.lang.Object message)
Log a message with warn log level.

Specified by:
warn in interface Log
Parameters:
message - log this message

warn

public void warn(java.lang.Object message,
                 java.lang.Throwable exception)
Log a message and exception with warn log level.

Specified by:
warn in interface Log
Parameters:
message - log this message
exception - log this cause


Copyright 2002-2004 The Apache Software Foundation.