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

org.znerd.util.log.MavenLimb Maven / Gradle / Ivy

// See the COPYRIGHT file for copyright and license information
package org.znerd.util.log;

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

/**
 * Limb implementation that sends output via the Maven logging mechanism.
 * 

* Levels are mapped as follows: TODO */ public class MavenLimb extends Limb { public MavenLimb(Log log) throws IllegalArgumentException { if (log == null) { throw new IllegalArgumentException("log == null"); } _log = log; } private Log _log; protected void logImpl(LogLevel level, String message, Throwable exception) { switch (level) { case DEBUG: _log.debug(message, exception); break; case INFO: _log.debug("INFO: " + message, exception); break; case NOTICE: _log.info(message, exception); break; case WARNING: _log.warn(message, exception); break; case ERROR: _log.error(message, exception); break; default: _log.error("FATAL: " + message, exception); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy