org.codehaus.plexus.logging.console.ConsoleLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
package org.codehaus.plexus.logging.console;
import org.codehaus.plexus.logging.AbstractLogger;
import org.codehaus.plexus.logging.Logger;
/**
* Logger sending everything to the standard output streams.
* This is mainly for the cases when you have a utility that
* does not have a logger to supply.
*
* @author Avalon Development Team
* @version $Id: ConsoleLogger.java 1323 2004-12-20 23:00:59Z jvanzyl $
*/
public final class ConsoleLogger
extends AbstractLogger
{
public ConsoleLogger( int threshold, String name )
{
super( threshold, name );
}
public void debug( String message, Throwable throwable )
{
if ( isDebugEnabled() )
{
System.out.print( "[DEBUG] " );
System.out.println( message );
if ( null != throwable )
{
throwable.printStackTrace( System.out );
}
}
}
public void info( String message, Throwable throwable )
{
if ( isInfoEnabled() )
{
System.out.print( "[INFO] " );
System.out.println( message );
if ( null != throwable )
{
throwable.printStackTrace( System.out );
}
}
}
public void warn( String message, Throwable throwable )
{
if ( isWarnEnabled() )
{
System.out.print( "[WARNING] " );
System.out.println( message );
if ( null != throwable )
{
throwable.printStackTrace( System.out );
}
}
}
public void error( String message, Throwable throwable )
{
if ( isErrorEnabled() )
{
System.out.print( "[ERROR] " );
System.out.println( message );
if ( null != throwable )
{
throwable.printStackTrace( System.out );
}
}
}
public void fatalError( String message, Throwable throwable )
{
if ( isFatalErrorEnabled() )
{
System.out.print( "[FATAL ERROR] " );
System.out.println( message );
if ( null != throwable )
{
throwable.printStackTrace( System.out );
}
}
}
public Logger getChildLogger( String name )
{
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy