Package org.infinispan.rest.logging
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
Log abstraction for the REST server module. For this module, message ids ranging from 12001 to 13000 inclusively have been reserved.- Since:
- 5.0
- Author:
- Galder ZamarreƱo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NoCacheFoundException
cacheNotFound(String cacheName)
ServiceUnavailableException
cacheUnavailable(String cacheName)
org.infinispan.commons.dataconversion.EncodingException
errorTranscoding(Throwable cause)
void
errorWhileResponding(Exception e)
CacheConfigurationException
illegalCompressionLevel(int compressionLevel)
NullPointerException
missingRequiredMediaType(String cacheName)
CacheUnavailableException
requestNotAllowedToInternalCaches(String cacheName)
CacheUnavailableException
requestNotAllowedToInternalCachesWithoutAuthz(String cacheName)
void
uncaughtExceptionInThePipeline(Throwable e)
UnsupportedOperationException
unsupportedConfigurationOption()
UnacceptableDataFormatException
unsupportedDataFormat(String mediaType)
-
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
-
errorTranscoding
@Message(value="Error transcoding content", id=495) org.infinispan.commons.dataconversion.EncodingException errorTranscoding(@Cause Throwable cause)
-
unsupportedConfigurationOption
@Message(value="Unsupported configuration option", id=12004) UnsupportedOperationException unsupportedConfigurationOption()
-
errorWhileResponding
@LogMessage(level=TRACE) @Message(value="An error occurred while responding to the client", id=12005) void errorWhileResponding(@Cause Exception e)
-
uncaughtExceptionInThePipeline
@LogMessage(level=ERROR) @Message(value="Uncaught exception in the pipeline", id=12006) void uncaughtExceptionInThePipeline(@Cause Throwable e)
-
unsupportedDataFormat
@Message(value="Cannot convert to %s", id=12007) UnacceptableDataFormatException unsupportedDataFormat(String mediaType)
-
cacheUnavailable
@Message(value="Cache with name \'%s\' is temporarily unavailable.", id=12008) ServiceUnavailableException cacheUnavailable(String cacheName)
-
missingRequiredMediaType
@Message(value="Cannot obtain cache \'%s\', without required MediaType", id=12009) NullPointerException missingRequiredMediaType(String cacheName)
-
cacheNotFound
@Message(value="Cache with name \'%s\' not found amongst the configured caches", id=12010) NoCacheFoundException cacheNotFound(String cacheName)
-
requestNotAllowedToInternalCaches
@Message(value="Remote requests are not allowed to private caches. Do no send remote requests to cache \'%s\'", id=12011) CacheUnavailableException requestNotAllowedToInternalCaches(String cacheName)
-
requestNotAllowedToInternalCachesWithoutAuthz
@Message(value="Remote requests are not allowed to internal caches when authorization is disabled. Do no send remote requests to cache \'%s\'", id=12012) CacheUnavailableException requestNotAllowedToInternalCachesWithoutAuthz(String cacheName)
-
illegalCompressionLevel
@Message(value="Illegal compression level \'%d\'. The value must be >= 0 and <= 9", id=12014) CacheConfigurationException illegalCompressionLevel(int compressionLevel)
-
-