Interface Log
- All Superinterfaces:
org.jboss.logging.BasicLogger
@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
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionbackupAlreadyExists
(String name) void
backupComplete
(String backupName) void
backupDeleted
(String name) void
channelStillBound
(io.netty.channel.Channel ch, SocketAddress address) void
channelStillConnected
(io.netty.channel.Channel ch, SocketAddress address) configurationMustContainSingleCache
(String name, String configuration) void
createdNettyEventLoop
(String eventLoopClassName, String configuration) void
createdSocketChannel
(String channelClassName, String configuration) void
epollNotAvailable
(String message) errorCreatingBackup
(Throwable cause) errorDeserializing
(String className) errorRestoringBackup
(Path path, Throwable cause) illegalIdleTimeout
(int idleTimeout) illegalIOThreads
(int ioThreads) illegalParameterType
(String parameter, Class<?> type) illegalReceiveBufferSize
(int recvBufSize) illegalSendBufferSize
(int sendBufSize) illegalWorkerThreads
(int workerThreads) void
initiatingBackup
(String name) void
initiatingRestore
(String name, Path backup) void
ioUringNotAvailable
(String message) void
ipFilterConnectionRejection
(InetSocketAddress remoteAddress, io.netty.handler.ipfilter.IpFilterRule rule) missingCacheConfiguration
(String name, String configuration) missingKeyStorePassword
(String keyStore) missingRequiredAdminTaskParameter
(String name, String parameter) missingTrustStorePassword
(String trustStore) restoreAlreadyExists
(String name) void
restoreComplete
(String name) unableToFindBackupResource
(String resource, Set<String> resourceNames) unableToFindResource
(String resource, String resourceName) unsupportedDataFormat
(MediaType contentFormat) void
usingTransport
(String transportName) 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:
-
SECURITY
-
SERVER
-
-
Method Details
-
channelStillBound
@LogMessage(level=WARN) @Message(value="%s is still bound to %s", id=5005) void channelStillBound(io.netty.channel.Channel ch, SocketAddress address) -
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
-
createdNettyEventLoop
-
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) -
unsupportedDataFormat
@Message(value="Data format \'%s\' not supported", id=5033) TranscodingException unsupportedDataFormat(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 allow list. Include the class name in the server cache manager allow list to authorize.", id=5035) CacheException errorDeserializing(String className) -
illegalIOThreads
@Message(value="Illegal number of ioThreads: %d", id=5036) IllegalArgumentException illegalIOThreads(int ioThreads) -
illegalParameterType
@Message(value="Illegal type for parameter \'%s\': %s", id=5038) IllegalArgumentException illegalParameterType(String parameter, Class<?> type) -
errorCreatingBackup
@Message(value="Cannot create cluster backup", id=5039) CacheException errorCreatingBackup(@Cause Throwable cause) -
errorRestoringBackup
@Message(value="Cannot restore cluster backup \'%s\'", id=5040) CacheException errorRestoringBackup(Path path, @Cause Throwable cause) -
backupInProgress
@Message(value="Cannot perform backup, backup currently in progress", id=5041) CacheException backupInProgress() -
restoreInProgress
@Message(value="Cannot restore content, restore currently in progress", id=5042) CacheException restoreInProgress() -
initiatingBackup
@LogMessage(level=INFO) @Message(value="Starting backup \'%s\'", id=5043) void initiatingBackup(String name) -
backupComplete
@LogMessage(level=INFO) @Message(value="Backup file created \'%s\'", id=5044) void backupComplete(String backupName) -
initiatingRestore
-
restoreComplete
@LogMessage(level=INFO) @Message(value="Restore \'%s\' complete", id=5046) void restoreComplete(String name) -
unableToFindBackupResource
@Message(value="%s \'%s\' not found in the backup archive", id=5047) CacheException unableToFindBackupResource(String resource, Set<String> resourceNames) -
unableToFindResource
@Message(value="%s \'%s\' does not exist", id=5048) CacheException unableToFindResource(String resource, String resourceName) -
backupAlreadyExists
@Message(value="Cannot perform backup, backup already exists with name \'%s\'", id=5049) CacheException backupAlreadyExists(String name) -
backupDeleted
@LogMessage(level=INFO) @Message(value="Deleted backup \'%s\'", id=5050) void backupDeleted(String name) -
restoreAlreadyExists
@Message(value="Cannot perform restore, restore already exists with name \'%s\'", id=5051) CacheException restoreAlreadyExists(String name) -
ipFilterConnectionRejection
@LogMessage(level=INFO) @Message(value="Rejected connection from \'%s\' using rule \'%s\'", id=5052) void ipFilterConnectionRejection(InetSocketAddress remoteAddress, io.netty.handler.ipfilter.IpFilterRule rule) -
configurationMustContainSingleCache
@Message(value="The supplied configuration for cache \'%s\' must contain a single cache configuration for it: %s", id=5053) CacheConfigurationException configurationMustContainSingleCache(String name, String configuration) -
ioUringNotAvailable
@LogMessage(level=INFO) @Message(value="Native IOUring transport not available, using NIO instead: %s", id=5054) void ioUringNotAvailable(String message) -
usingTransport
-