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 server core module. For this module, message ids ranging from 5001 to 6000 inclusively have been reserved.
    Since:
    5.0
    Author:
    Galder ZamarreƱo
    • Method Detail

      • serverDidNotUnbind

        @LogMessage(level=WARN)
        @Message(value="Server channel group did not completely unbind",
                 id=5004)
        void serverDidNotUnbind()
      • channelStillBound

        @LogMessage(level=WARN)
        @Message(value="%s is still bound to %s",
                 id=5005)
        void channelStillBound​(io.netty.channel.Channel ch,
                               SocketAddress address)
      • serverDidNotClose

        @LogMessage(level=WARN)
        @Message(value="Channel group did not completely close",
                 id=5006)
        void serverDidNotClose()
      • channelStillConnected

        @LogMessage(level=WARN)
        @Message(value="%s is still connected to %s",
                 id=5007)
        void channelStillConnected​(io.netty.channel.Channel ch,
                                   SocketAddress address)
      • illegalWorkerThreads

        @Message(value="Illegal number of workerThreads: %d",
                 id=5010)
        IllegalArgumentException illegalWorkerThreads​(int workerThreads)
      • illegalIdleTimeout

        @Message(value="Idle timeout can\'t be lower than -1: %d",
                 id=5011)
        IllegalArgumentException illegalIdleTimeout​(int idleTimeout)
      • illegalReceiveBufferSize

        @Message(value="Receive Buffer Size can\'t be lower than 0: %d",
                 id=5012)
        IllegalArgumentException illegalReceiveBufferSize​(int recvBufSize)
      • illegalSendBufferSize

        @Message(value="Send Buffer Size can\'t be lower than 0: %d",
                 id=5013)
        IllegalArgumentException illegalSendBufferSize​(int sendBufSize)
      • noSSLKeyManagerConfiguration

        @Message(value="SSL Enabled but no KeyStore specified",
                 id=5014)
        CacheConfigurationException noSSLKeyManagerConfiguration()
      • missingKeyStorePassword

        @Message(value="A password is required to open the KeyStore \'%s\'",
                 id=5016)
        CacheConfigurationException missingKeyStorePassword​(String keyStore)
      • missingTrustStorePassword

        @Message(value="A password is required to open the TrustStore \'%s\'",
                 id=5017)
        CacheConfigurationException missingTrustStorePassword​(String trustStore)
      • xorSSLContext

        @Message(value="Cannot configure custom KeyStore and/or TrustStore when specifying a SSLContext",
                 id=5018)
        CacheConfigurationException xorSSLContext()
      • createdSocketChannel

        @LogMessage(level=DEBUG)
        @Message(value="Using Netty SocketChannel %s for %s",
                 id=5025)
        void createdSocketChannel​(String channelClassName,
                                  String configuration)
      • createdNettyEventLoop

        @LogMessage(level=DEBUG)
        @Message(value="Using Netty EventLoop %s for %s",
                 id=5026)
        void createdNettyEventLoop​(String eventLoopClassName,
                                   String configuration)
      • noSniDomainConfigured

        @Message(value="SSL Enabled but no SNI domain configured",
                 id=5027)
        CacheConfigurationException noSniDomainConfigured()
      • epollNotAvailable

        @LogMessage(level=INFO)
        @Message(value="Native Epoll transport not available, using NIO instead: %s",
                 id=5028)
        void epollNotAvailable​(String message)
      • cannotRegisterAdminOperationsHandler

        @Message(value="No task manager available to register the admin operations handler",
                 id=5029)
        CacheConfigurationException cannotRegisterAdminOperationsHandler()
      • missingRequiredAdminTaskParameter

        @Message(value="Administration task \'%s\' invoked without required parameter \'%s\'",
                 id=5030)
        NullPointerException missingRequiredAdminTaskParameter​(String name,
                                                               String parameter)
      • missingCacheConfiguration

        @Message(value="The supplied configuration for cache \'%s\' is missing a named configuration for it: %s",
                 id=5031)
        CacheConfigurationException missingCacheConfiguration​(String name,
                                                              String configuration)
      • errorDuringTranscoding

        @Message(value="Error during transcoding",
                 id=5032)
        TranscodingException errorDuringTranscoding​(@Cause
                                                    Throwable e)
      • unsupportedDataFormat

        @Message(value="Data format \'%s\' not supported",
                 id=5033)
        TranscodingException unsupportedDataFormat​(org.infinispan.commons.dataconversion.MediaType contentFormat)
      • cannotCreateClusteredCache

        @Message(value="Cannot create clustered caches in non-clustered servers",
                 id=5034)
        UnsupportedOperationException cannotCreateClusteredCache()
      • errorDeserializing

        @Message(value="Class \'%s\' blocked by deserialization white list. Include the class name in the server cache manager white list to authorize.",
                 id=5035)
        CacheException errorDeserializing​(String className)
      • illegalIOThreads

        @Message(value="Illegal number of ioThreads: %d",
                 id=5036)
        IllegalArgumentException illegalIOThreads​(int ioThreads)