org.infinispan.cdi.common.util.logging.Log Maven / Gradle / Ivy
package org.infinispan.cdi.common.util.logging;
import static org.jboss.logging.Logger.Level.INFO;
import org.jboss.logging.BasicLogger;
import org.jboss.logging.annotations.LogMessage;
import org.jboss.logging.annotations.Message;
import org.jboss.logging.annotations.MessageLogger;
/**
* The JBoss Logging interface which defined the logging methods for the CDI integration. The id range for the CDI
* integration is 17001-18000
*
* @author Kevin Pollet <[email protected]> (C) 2011 SERLI
*/
@MessageLogger(projectCode = "ISPN")
public interface Log extends BasicLogger {
@LogMessage(level = INFO)
@Message(value = "Infinispan CDI extension version: %s", id = 17001)
void version(String version);
@Message(value = "%s parameter must not be null", id = 17003)
IllegalArgumentException parameterMustNotBeNull(String parameterName);
}