org.apache.pluto.portalImpl.services.log
Class StandardOutLogger

java.lang.Object
  extended by org.apache.pluto.portalImpl.services.log.StandardOutLogger

public class StandardOutLogger
extends java.lang.Object

An incredible simple Logger implementation which simply directs messages to StandardOut. This Logger is only used in cases, such as in the Deployer, when no services are registered with the ServiceManager.


Constructor Summary
StandardOutLogger()
           
 
Method Summary
 void debug(java.lang.String aMessage)
           
 void debug(java.lang.String aMessage, java.lang.Throwable aThrowable)
           
 void error(java.lang.String aMessage)
           
 void error(java.lang.String aMessage, java.lang.Throwable aThrowable)
           
 void error(java.lang.Throwable aThrowable)
           
 void info(java.lang.String aMessage)
           
 boolean isDebugEnabled()
           
 boolean isErrorEnabled()
           
 boolean isInfoEnabled()
           
 boolean isWarnEnabled()
           
 void warn(java.lang.String aMessage)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StandardOutLogger

public StandardOutLogger()
Method Detail

isDebugEnabled

public boolean isDebugEnabled()

isInfoEnabled

public boolean isInfoEnabled()

isWarnEnabled

public boolean isWarnEnabled()

isErrorEnabled

public boolean isErrorEnabled()

debug

public void debug(java.lang.String aMessage)

debug

public void debug(java.lang.String aMessage,
                  java.lang.Throwable aThrowable)

info

public void info(java.lang.String aMessage)

warn

public void warn(java.lang.String aMessage)

error

public void error(java.lang.String aMessage)

error

public void error(java.lang.String aMessage,
                  java.lang.Throwable aThrowable)

error

public void error(java.lang.Throwable aThrowable)