cookerMojoTrigger.MojoLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cooker-maven-plugin Show documentation
Show all versions of cooker-maven-plugin Show documentation
Derives smallest Feature File, Allows Data from Excel(xls and xlsx) and Also provides a clear and
concise reporting
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;
}
}