Package org.infinispan.persistence.sifs
Interface Log
-
- All Superinterfaces:
org.jboss.logging.BasicLogger
- All Known Implementing Classes:
Log_$logger
@MessageLogger(projectCode="ISPN") public interface Log extends org.jboss.logging.BasicLogger
This module reserves range 29001 - 29500
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PersistenceException
cannotClearData(java.io.IOException e)
PersistenceException
cannotClearIndex(java.io.IOException e)
void
cannotCloseDeleteFile(int fileId, java.io.IOException e)
void
cannotCloseFile(java.io.IOException e)
PersistenceException
cannotLoadKeyFromIndex(java.lang.Object key, java.lang.Exception e)
PersistenceException
cannotOpenIndex(java.lang.String location, java.io.IOException e)
void
cannotTruncateIndex(java.io.IOException e)
void
compactorFailed(java.lang.Throwable e)
void
errorInIndexUpdater(java.lang.Throwable e)
void
failedToCloseIndex(java.io.IOException e)
PersistenceException
indexLooksCorrupt(java.lang.Exception e)
PersistenceException
interruptedWhileClearing(java.lang.InterruptedException e)
PersistenceException
interruptedWhileStopping(java.lang.InterruptedException e)
CacheConfigurationException
invalidCompactionThreshold(double value)
PersistenceException
keyIsTooLong(java.lang.Object key, int keyLength, int maxNodeSize, int maxKeyLength)
CacheConfigurationException
maxNodeSizeLimitedToShort(int maxNodeSize)
CacheConfigurationException
minNodeSizeMustBeLessOrEqualToMax(int minNodeSize, int maxNodeSize)
PersistenceException
sizeCalculationInterrupted(java.lang.InterruptedException e)
-
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
-
-
-
-
Method Detail
-
maxNodeSizeLimitedToShort
@Message(value="Max size of index node (%d) is limited to 32767 bytes.", id=29001) CacheConfigurationException maxNodeSizeLimitedToShort(int maxNodeSize)
-
minNodeSizeMustBeLessOrEqualToMax
@Message(value="Min size of index node (%d) must be less or equal to max size (%d).", id=29002) CacheConfigurationException minNodeSizeMustBeLessOrEqualToMax(int minNodeSize, int maxNodeSize)
-
sizeCalculationInterrupted
@Message(value="Calculation of size has been interrupted.", id=29003) PersistenceException sizeCalculationInterrupted(@Cause java.lang.InterruptedException e)
-
cannotTruncateIndex
@LogMessage(level=WARN) @Message(value="Cannot truncate index", id=29006) void cannotTruncateIndex(@Cause java.io.IOException e)
-
errorInIndexUpdater
@LogMessage(level=ERROR) @Message(value="Unexpected error in index updater thread.", id=29007) void errorInIndexUpdater(@Cause java.lang.Throwable e)
-
failedToCloseIndex
@LogMessage(level=ERROR) @Message(value="Failed to close the index file.", id=29008) void failedToCloseIndex(@Cause java.io.IOException e)
-
compactorFailed
@LogMessage(level=ERROR) @Message(value="Unexpected error in data compactor.", id=29009) void compactorFailed(@Cause java.lang.Throwable e)
-
cannotCloseDeleteFile
@LogMessage(level=ERROR) @Message(value="Cannot close/delete data file %d.", id=290010) void cannotCloseDeleteFile(int fileId, @Cause java.io.IOException e)
-
cannotCloseFile
@LogMessage(level=ERROR) @Message(value="Cannot close data file.", id=29011) void cannotCloseFile(@Cause java.io.IOException e)
-
invalidCompactionThreshold
@Message(value="Compaction threshold (%f) should be between 0 (exclusively) and 1 (inclusively).", id=29012) CacheConfigurationException invalidCompactionThreshold(double value)
-
cannotOpenIndex
@Message(value="Cannot open index on %s", id=29013) PersistenceException cannotOpenIndex(java.lang.String location, @Cause java.io.IOException e)
-
interruptedWhileStopping
@Message(value="Interrupted while stopping the store", id=29014) PersistenceException interruptedWhileStopping(@Cause java.lang.InterruptedException e)
-
interruptedWhileClearing
@Message(value="Interrupted while pausing the index for clear.", id=29015) PersistenceException interruptedWhileClearing(@Cause java.lang.InterruptedException e)
-
cannotClearIndex
@Message(value="Cannot clear/reopen index.", id=29016) PersistenceException cannotClearIndex(@Cause java.io.IOException e)
-
cannotClearData
@Message(value="Cannot clear data directory.", id=29017) PersistenceException cannotClearData(@Cause java.io.IOException e)
-
keyIsTooLong
@Message(value="The serialized form of key %s is too long (%d); with maxNodeSize=%d bytes you can use only keys serialized to at most %d bytes.", id=29018) PersistenceException keyIsTooLong(java.lang.Object key, int keyLength, int maxNodeSize, int maxKeyLength)
-
cannotLoadKeyFromIndex
@Message(value="Cannot load key %s from index.", id=29019) PersistenceException cannotLoadKeyFromIndex(java.lang.Object key, @Cause java.lang.Exception e)
-
indexLooksCorrupt
@Message(value="Index looks corrupt.", id=29020) PersistenceException indexLooksCorrupt(@Cause java.lang.Exception e)
-
-