Interface InfinispanLogger
-
- All Superinterfaces:
org.jboss.logging.BasicLogger
- All Known Implementing Classes:
InfinispanLogger_$logger
@MessageLogger(projectCode="WFLYCLINF", length=4) public interface InfinispanLogger extends org.jboss.logging.BasicLogger- Author:
- James R. Perkins, Tristan Tarrant, David M. Lloyd
-
-
Field Summary
Fields Modifier and Type Field Description static InfinispanLoggerROOT_LOGGERThe root logger.static StringROOT_LOGGER_CATEGORY
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidactivatingSubsystem()Logs an informational message indicating the Infinispan subsystem is being activated.voidattributeDeprecated(String attribute, String element)Logs a warning message indicating that the specified attribute of the specified element is no longer valid and will be ignored.voidcacheStarted(String cacheName, String containerName)Logs an informational message indicating that a cache is being started.voidcacheStopped(String cacheName, String containerName)Logs an informational message indicating that a cache is being stopped.voidelementIgnored(String element)Logs a warning message indicating that the specified topology attribute of the transport element is no longer validIllegalArgumentExceptioninvalidCacheStore(Throwable cause, String cacheStoreName)Creates an exception indicating an invalid cache store.voidmarshallerEnumValueDeprecated(String attributeName, Object attributeValue, Set<?> supportedValues)voidremoteCacheContainerStarted(String remoteCacheContainer)voidremoteCacheContainerStopped(String remoteCacheContainer)org.infinispan.client.hotrod.exceptions.HotRodClientExceptionremoteCacheMustBeDefined(String protocolVersion, String remoteCacheName)-
Methods inherited from interface org.jboss.logging.BasicLogger
debug, debug, debug, debug, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugv, debugv, debugv, debugv, debugv, debugv, debugv, debugv, error, error, error, error, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorv, errorv, errorv, errorv, errorv, errorv, errorv, errorv, fatal, fatal, fatal, fatal, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, info, info, info, info, infof, infof, infof, infof, infof, infof, infof, infof, infov, infov, infov, infov, infov, infov, infov, infov, isDebugEnabled, isEnabled, isInfoEnabled, isTraceEnabled, log, log, log, log, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, trace, trace, trace, trace, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracev, tracev, tracev, tracev, tracev, tracev, tracev, tracev, warn, warn, warn, warn, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnv, warnv, warnv, warnv, warnv, warnv, warnv, warnv
-
-
-
-
Field Detail
-
ROOT_LOGGER_CATEGORY
static final String ROOT_LOGGER_CATEGORY
- See Also:
- Constant Field Values
-
ROOT_LOGGER
static final InfinispanLogger ROOT_LOGGER
The root logger.
-
-
Method Detail
-
activatingSubsystem
@LogMessage(level=INFO) @Message(id=1, value="Activating Infinispan subsystem.") void activatingSubsystem()Logs an informational message indicating the Infinispan subsystem is being activated.
-
cacheStarted
@LogMessage(level=INFO) @Message(id=2, value="Started %s cache from %s container") void cacheStarted(String cacheName, String containerName)Logs an informational message indicating that a cache is being started.- Parameters:
cacheName- the name of the cache.containerName- the name of the cache container.
-
cacheStopped
@LogMessage(level=INFO) @Message(id=3, value="Stopped %s cache from %s container") void cacheStopped(String cacheName, String containerName)Logs an informational message indicating that a cache is being stopped.- Parameters:
cacheName- the name of the cache.containerName- the name of the cache container.
-
attributeDeprecated
@LogMessage(level=WARN) @Message(id=4, value="The \'%s\' attribute of the \'%s\' element is no longer supported and will be ignored") void attributeDeprecated(String attribute, String element)Logs a warning message indicating that the specified attribute of the specified element is no longer valid and will be ignored.
-
elementIgnored
@LogMessage(level=WARN) @Message(id=9, value="The \'%s\' element is no longer supported and will be ignored") void elementIgnored(String element)Logs a warning message indicating that the specified topology attribute of the transport element is no longer valid
-
invalidCacheStore
@Message(id=10, value="%s is not a valid cache store") IllegalArgumentException invalidCacheStore(@Cause Throwable cause, String cacheStoreName)Creates an exception indicating an invalid cache store.- Parameters:
cause- the cause of the error.cacheStoreName- the name of the cache store.- Returns:
- an
IllegalArgumentExceptionfor the error.
-
remoteCacheContainerStarted
@LogMessage(level=INFO) @Message(id=29, value="Started remote cache container \'%s\'.") void remoteCacheContainerStarted(String remoteCacheContainer)
-
remoteCacheContainerStopped
@LogMessage(level=INFO) @Message(id=30, value="Stopped remote cache container \'%s\'.") void remoteCacheContainerStopped(String remoteCacheContainer)
-
remoteCacheMustBeDefined
@Message(id=31, value="Specified HotRod protocol version %s does not support creating caches automatically. Cache named \'%s\' must be already created on the Infinispan Server!") org.infinispan.client.hotrod.exceptions.HotRodClientException remoteCacheMustBeDefined(String protocolVersion, String remoteCacheName)
-
-