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

com.greenpepper.maven.runner.Logger Maven / Gradle / Ivy


/**
 * Copyright (c) 2009 Pyxis Technologies inc.
 *
 * This is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA,
 * or see the FSF site: http://www.fsf.org.
 *
 * @author oaouattara
 * @version $Id: $Id
 */
package com.greenpepper.maven.runner;

import java.io.PrintStream;

import org.apache.maven.embedder.AbstractMavenEmbedderLogger;
public class Logger extends AbstractMavenEmbedderLogger
{
    private final PrintStream out;

    /**
     * 

Constructor for Logger.

* * @param out a {@link java.io.PrintStream} object. */ public Logger(PrintStream out) { this.out = out; } /** *

Getter for the field out.

* * @return a {@link java.io.PrintStream} object. */ public final PrintStream getOut() { return out; } /** {@inheritDoc} */ public final void debug(String message, Throwable throwable) { if (isDebugEnabled()) { out.print( "[ maven embedder DEBUG] " ); out.println( message ); if (null != throwable) { throwable.printStackTrace( out ); } } } /** {@inheritDoc} */ public final void info(String message, Throwable throwable) { if (isInfoEnabled()) { out.print( "[ maven embedder INFO] " ); out.println( message ); if (null != throwable) { throwable.printStackTrace( out ); } } } /** {@inheritDoc} */ public final void warn(String message, Throwable throwable) { if (isWarnEnabled()) { out.print( "[ maven embedder WARNING] " ); out.println( message ); if (null != throwable) { throwable.printStackTrace( out ); } } } /** {@inheritDoc} */ public final void error(String message, Throwable throwable) { if (isErrorEnabled()) { out.print( "[ maven embedder ERROR] " ); out.println( message ); if (null != throwable) { throwable.printStackTrace( out ); } } } /** {@inheritDoc} */ public final void fatalError(String message, Throwable throwable) { if (isFatalErrorEnabled()) { out.print( "[ maven embedder FATAL ERROR] " ); out.println( message ); if (null != throwable) { throwable.printStackTrace( out ); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy