All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.plexus.logging.NullLogger Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.codehaus.plexus.logging;

public class NullLogger extends AbstractLogger
{
    public NullLogger( )
    {
        super( LEVEL_DISABLED, null );
    }

    public void debug( String message, Throwable throwable )
    {
    }

    public void info( String message, Throwable throwable )
    {
    }

    public void warn( String message, Throwable throwable )
    {
    }

    public void error( String message, Throwable throwable )
    {
    }

    public void fatalError( String message, Throwable throwable )
    {
    }

    public Logger getChildLogger( String name )
    {
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy