Package org.infinispan.counter.logging
Interface Log
- All Superinterfaces:
org.jboss.logging.BasicLogger
@MessageLogger(projectCode="ISPN")
public interface Log
extends org.jboss.logging.BasicLogger
range: 29501 - 30000
- Since:
- 9.0
- Author:
- Pedro Ruivo
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptioncannotRenamePersistentFile
(String absolutePath, File persistentFile, Throwable cause) duplicatedCounterName
(String counter) invalidConcurrencyLevel
(int value) invalidCounterType
(String expected, String actual) invalidInitialValueForBoundedCounter
(long lower, long upper, long value) invalidNumOwners
(int value) invalidSameLowerAndUpperBound
(long lower, long upper) invalidScope
(String scope) jmxRegistrationFailed
(Throwable cause) metadataIsMissing
(ByteString counterName) undefinedCounter
(String name) 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 Details
-
LOG_ROOT
- See Also:
-
CONTAINER
-
-
Method Details
-
missingCounterName
@Message(value="The counter name is missing.", id=29503) CounterConfigurationException missingCounterName() -
invalidStorageMode
@Message(value="Invalid storage mode. It must be non-null", id=29504) CounterConfigurationException invalidStorageMode() -
invalidPersistentStorageMode
@Message(value="Invalid storage mode. PERSISTENT is not allowed without global state enabled in cache container.", id=29505) CounterConfigurationException invalidPersistentStorageMode() -
invalidNumOwners
@Message(value="Invalid number of owner. It must be higher than zero but it was %s", id=29506) CounterConfigurationException invalidNumOwners(int value) -
invalidReliabilityMode
@Message(value="Invalid reliability mode. It must be non-null", id=29507) CounterConfigurationException invalidReliabilityMode() -
invalidInitialValueForBoundedCounter
@Message(value="Invalid initial value for counter. It must be between %s and %s (inclusive) but was %s", id=29508) CounterConfigurationException invalidInitialValueForBoundedCounter(long lower, long upper, long value) -
invalidConcurrencyLevel
@Message(value="Invalid concurrency-level. It must be higher than zero but it was %s", id=29509) CounterConfigurationException invalidConcurrencyLevel(int value) -
invalidCounterType
@Message(value="Invalid counter type. Expected=%s but got %s", id=29514) CounterException invalidCounterType(String expected, String actual) -
unableToFetchCaches
@Message(value="Unable to fetch counter manager caches.", id=29515) CounterException unableToFetchCaches() -
undefinedCounter
@Message(value="Counter \'%s\' is not defined.", id=29516) CounterNotFoundException undefinedCounter(String name) -
duplicatedCounterName
@Message(value="Duplicated counter name found. Counter \'%s\' already exists.", id=29517) CounterConfigurationException duplicatedCounterName(String counter) -
metadataIsMissing
@Message(value="Metadata not found but counter exists. Counter=%s", id=29518) IllegalStateException metadataIsMissing(ByteString counterName) -
invalidScope
@Message(value="Invalid scope for tag <counter>. Expected CACHE_CONTAINER but was %s", id=29520) CounterConfigurationException invalidScope(String scope) -
invalidSameLowerAndUpperBound
@Message(value="Lower bound (%s) and upper bound (%s) can\'t be the same.", id=29524) CounterConfigurationException invalidSameLowerAndUpperBound(long lower, long upper) -
cannotRenamePersistentFile
@Message(value="Cannot rename file %s to %s", id=29525) CounterConfigurationException cannotRenamePersistentFile(String absolutePath, File persistentFile, @Cause Throwable cause) -
errorPersistingCountersConfiguration
@Message(value="Error while persisting counter\'s configurations", id=29526) CounterConfigurationException errorPersistingCountersConfiguration(@Cause Throwable cause) -
errorReadingCountersConfiguration
@Message(value="Error while reading counter\'s configurations", id=29527) CounterConfigurationException errorReadingCountersConfiguration(@Cause Throwable cause) -
counterManagerNotStarted
@Message(value="CounterManager hasn\'t started yet or has been stopped.", id=29528) CounterException counterManagerNotStarted() -
jmxRegistrationFailed
@Message(value="MBean registration failed", id=29529) CounterException jmxRegistrationFailed(@Cause Throwable cause)
-