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

com.google.code.sbt.compiler.plugin.MavenCompilerLogger Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
/*
 * Copyright 2013-2014 Grzegorz Slowikowski (gslowikowski at gmail dot com)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package com.google.code.sbt.compiler.plugin;

import org.apache.maven.plugin.logging.Log;

import com.google.code.sbt.compiler.api.CompilerLogger;

/**
 * Maven {@link org.apache.maven.plugin.logging.Log} wrapper implementing {@link CompilerLogger} interface.
 *
 * @author Grzegorz Slowikowski
 */
public class MavenCompilerLogger
    implements CompilerLogger
{
    private Log mavenLogger;

    /**
     * Creates {@link CompilerLogger} wrapper around Maven {@link Log} delegate.
     * 
     * @param mavenLogger Maven {@link Log} delegate
     */
    public MavenCompilerLogger( Log mavenLogger )
    {
        this.mavenLogger = mavenLogger;
    }

    @Override
    public boolean isDebugEnabled()
    {
        return mavenLogger.isDebugEnabled();
    }

    @Override
    public void debug( String content )
    {
        mavenLogger.debug( content );
    }

    @Override
    public void debug( Throwable throwable )
    {
        mavenLogger.debug( throwable );
    }

    @Override
    public boolean isInfoEnabled()
    {
        return mavenLogger.isInfoEnabled();
    }

    @Override
    public void info( String content )
    {
        mavenLogger.info( content );
    }

    @Override
    public boolean isWarnEnabled()
    {
        return mavenLogger.isWarnEnabled();
    }

    @Override
    public void warn( String content )
    {
        mavenLogger.warn( content );
    }

    @Override
    public boolean isErrorEnabled()
    {
        return mavenLogger.isErrorEnabled();
    }

    @Override
    public void error( String content )
    {
        mavenLogger.error( content );
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy