Home » SLF4J-1.5.8 » org.apache.commons » logging » impl » [javadoc | source]
org.apache.commons.logging.impl
public class: NoOpLog [javadoc | source]
java.lang.Object
   org.apache.commons.logging.impl.NoOpLog

All Implemented Interfaces:
    Log, Serializable

Trivial implementation of Log that throws away all messages. No configurable system properties are supported.

Constructor:
 public NoOpLog() 
 public NoOpLog(String name) 
    Base constructor
Method from org.apache.commons.logging.impl.NoOpLog Summary:
debug,   debug,   error,   error,   fatal,   fatal,   info,   info,   isDebugEnabled,   isErrorEnabled,   isFatalEnabled,   isInfoEnabled,   isTraceEnabled,   isWarnEnabled,   trace,   trace,   warn,   warn
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.commons.logging.impl.NoOpLog Detail:
 public  void debug(Object message) 
    Do nothing
 public  void debug(Object message,
    Throwable t) 
    Do nothing
 public  void error(Object message) 
    Do nothing
 public  void error(Object message,
    Throwable t) 
    Do nothing
 public  void fatal(Object message) 
    Do nothing
 public  void fatal(Object message,
    Throwable t) 
    Do nothing
 public  void info(Object message) 
    Do nothing
 public  void info(Object message,
    Throwable t) 
    Do nothing
 public final boolean isDebugEnabled() 
    Debug is never enabled.
 public final boolean isErrorEnabled() 
    Error is never enabled.
 public final boolean isFatalEnabled() 
    Fatal is never enabled.
 public final boolean isInfoEnabled() 
    Info is never enabled.
 public final boolean isTraceEnabled() 
    Trace is never enabled.
 public final boolean isWarnEnabled() 
    Warn is never enabled.
 public  void trace(Object message) 
    Do nothing
 public  void trace(Object message,
    Throwable t) 
    Do nothing
 public  void warn(Object message) 
    Do nothing
 public  void warn(Object message,
    Throwable t) 
    Do nothing