Interface Log

All Superinterfaces:
org.jboss.logging.BasicLogger

@MessageLogger(projectCode="ISPN") public interface Log extends org.jboss.logging.BasicLogger
Log abstraction for the Hot Rod server module. For this module, message ids ranging from 6001 to 7000 inclusively have been reserved.
Since:
5.0
Author:
Galder ZamarreƱo
  • Method Details

    • exceptionReported

      @LogMessage(level=ERROR) @Message(value="Exception reported", id=5003) void exceptionReported(@Cause Throwable t)
    • noMembersInHashTopology

      @LogMessage(level=WARN) @Message(value="No members for new topology after applying consistent hash %s filtering into base topology %s", id=5019) void noMembersInHashTopology(ConsistentHash ch, String topologyMap)
    • noMembersInTopology

      @LogMessage(level=WARN) @Message(value="No members in new topology", id=5020) void noMembersInTopology()
    • errorDetectingCrashedMember

      @LogMessage(level=ERROR) @Message(value="Error detecting crashed member", id=6002) void errorDetectingCrashedMember(@Cause Throwable t)
    • serverAuthenticationProvider

      @Message(value="Cannot enable authentication without specifying a ServerAuthenticationProvider", id=6005) CacheConfigurationException serverAuthenticationProvider()
    • invalidAllowedMechs

      @Message(value="The specified allowedMechs [%s] contains mechs which are unsupported by the underlying factories [%s]", id=6006) CacheConfigurationException invalidAllowedMechs(Set<String> allowedMechs, Set<String> allMechs)
    • invalidOperation

      @Message(value="The requested operation is invalid", id=6007) UnsupportedOperationException invalidOperation()
    • missingServerName

      @Message(value="A serverName must be specified when enabling authentication", id=6008) CacheConfigurationException missingServerName()
    • unexpectedEvent

      @Message(value="Event not handled by current Hot Rod event implementation: \'%s\'", id=6009) IllegalStateException unexpectedEvent(Event e)
    • warnConditionalOperationNonTransactional

      @LogMessage(level=WARN) @Message(value="Conditional operation \'%s\' should be used with transactional caches, otherwise data inconsistency issues could arise under failure situations", id=6010) @Once void warnConditionalOperationNonTransactional(String op)
    • warnForceReturnPreviousNonTransactional

      @LogMessage(level=WARN) @Message(value="Operation \'%s\' forced to return previous value should be used on transactional caches, otherwise data inconsistency issues could arise under failure situations", id=6011) @Once void warnForceReturnPreviousNonTransactional(String op)
    • missingCacheEventFactory

      @Message(value="Listener %s factory \'%s\' not found in server", id=6013) MissingFactoryException missingCacheEventFactory(String factoryType, String name)
    • illegalFilterConverterEventFactory

      @Message(value="Trying to add a filter and converter factory with name \'%s\' but it does not extend CacheEventFilterConverterFactory", id=6014) IllegalStateException illegalFilterConverterEventFactory(String name)
    • missingKeyValueFilterConverterFactory

      @Message(value="Factory \'%s\' not found in server", id=6016) IllegalStateException missingKeyValueFilterConverterFactory(String name)
    • unauthorizedOperation

      @Message(value="Operation \'%s\' requires authentication", id=6017) SecurityException unauthorizedOperation(String op)
    • externalMechNotAllowedWithoutSSLClientCert

      @Message(value="EXTERNAL SASL mechanism not allowed without SSL client certificate", id=6018) SecurityException externalMechNotAllowedWithoutSSLClientCert()
    • missingHostAddress

      @Message(value="A host or proxyHost address has not been specified", id=6019) CacheConfigurationException missingHostAddress()
    • expectedTransactionalCache

      @Message(value="Cache \'%s\' is not transactional to execute a client transaction", id=6020) IllegalStateException expectedTransactionalCache(String cacheName)
    • unexpectedIsolationLevel

      @Message(value="Cache \'%s\' must have REPEATABLE_READ isolation level", id=6021) IllegalStateException unexpectedIsolationLevel(String cacheName)
    • invalidWeakCounter

      @Message(value="Expects a STRONG counter for \'%s\'", id=28023) CounterException invalidWeakCounter(String name)
    • skippingMarshallerWrapping

      @LogMessage(level=WARN) @Message(value="Not wrapping custom marshaller with media type \'%s\' since the format is already supported by the server", id=28024) @Once void skippingMarshallerWrapping(String mediaType)
    • errorSerializingResponse

      @Message(value="Error serializing script response \'%s\'", id=28025) EncodingException errorSerializingResponse(Object o)
    • removedUnclosedIterator

      @LogMessage(level=WARN) @Message(value="Removed unclosed iterator \'%s\'", id=28026) void removedUnclosedIterator(String iteratorId)
    • authenticationException

      @Message(value="Invalid credentials", id=28027) SecurityException authenticationException(@Cause Throwable cause)
    • invalidMech

      @Message(value="Invalid mech \'%s\'", id=28028) IllegalArgumentException invalidMech(String mech)
    • clientNotUpdatingTopology

      @LogMessage(level=WARN) @Message(value="Client %s keeps providing outdated topology %s", id=28029) void clientNotUpdatingTopology(SocketAddress socketAddress, int topologyId)