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

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

Go to download

Statistical sampling library for use in virtdata libraries, based on apache commons math 4

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

/**
 * @author Jason van Zyl
 * @author Trygve Laugstøl
 * @version $Id: AbstractLoggerManager.java 1323 2004-12-20 23:00:59Z jvanzyl $
 */
public abstract class AbstractLoggerManager
    implements LoggerManager
{
    /** */
    public AbstractLoggerManager()
    {        
    }

    public void setThreshold( String role, int threshold )
    {
        setThreshold( role, null, threshold );
    }

    public int getThreshold( String role )
    {
        return getThreshold( role, null );
    }

    public Logger getLoggerForComponent( String role )
    {
        return getLoggerForComponent( role, null );
    }

    public void returnComponentLogger( String role )
    {
        returnComponentLogger( role, null );
    }

    /**
     * Creates a string key useful as keys in Map's.
     * 
     * @param role The component role.
     * @param roleHint The component role hint.
     * @return Returns a string thats useful as a key for components.
     */
    protected String toMapKey( String role, String roleHint )
    {
         if ( roleHint == null )
         {
             return role;
         }
         else
         {
             return role + ":" + roleHint;
         }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy