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

cookerMojoTrigger.MojoLogger Maven / Gradle / Ivy

Go to download

Derives smallest Feature File, Allows Data from Excel(xls and xlsx) and Also provides a clear and concise reporting

There is a newer version: 3.1.0
Show newest version
package cookerMojoTrigger;


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

public class MojoLogger {
    private static Log logger;

    /**
     * Return the Logger Object
     * 
Author : Manjunath Prabhakar ([email protected])
* * @return Object of Maven Plugin Log */ public static Log getLogger() { return logger; } /** * Set the Logger object *
Author : Manjunath Prabhakar ([email protected])
* * @param log Object of Maven Plugin Log */ public static void setLogger(Log log) { logger = log; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy