Interface UndertowLogger

All Superinterfaces:
org.jboss.logging.BasicLogger
All Known Implementing Classes:
UndertowLogger_$logger

@MessageLogger(projectCode="WFLYUT", length=4) public interface UndertowLogger extends org.jboss.logging.BasicLogger
Author:
James R. Perkins
  • Field Details

    • ROOT_LOGGER

      static final UndertowLogger ROOT_LOGGER
      A root logger with the category of the package name.
  • Method Details

    • couldNotInitJsp

      @LogMessage(level=ERROR) @Message(id=1, value="Could not initialize Jakarta Server Pages") void couldNotInitJsp(@Cause ClassNotFoundException e)
    • serverStarting

      @LogMessage(level=INFO) @Message(id=3, value="Undertow %s starting") void serverStarting(String version)
    • serverStopping

      @LogMessage(level=INFO) @Message(id=4, value="Undertow %s stopping") void serverStopping(String version)
    • secureListenerNotAvailableForPort

      @LogMessage(level=WARN) @Message(id=5, value="Secure listener for protocol: \'%s\' not found! Using non secure port!") void secureListenerNotAvailableForPort(String protocol)
    • listenerStarted

      @LogMessage(level=INFO) @Message(id=6, value="Undertow %s listener %s listening on %s:%d") void listenerStarted(String type, String name, String address, int port)
      Creates an exception indicating the class, represented by the className parameter, cannot be accessed.
      Parameters:
      name - name of the listener
      address - socket address
    • listenerStopped

      @LogMessage(level=INFO) @Message(id=7, value="Undertow %s listener %s stopped, was bound to %s:%d") void listenerStopped(String type, String name, String address, int port)
    • listenerSuspend

      @LogMessage(level=INFO) @Message(id=8, value="Undertow %s listener %s suspending") void listenerSuspend(String type, String name)
    • cannotLoadDesignatedHandleTypes

      @LogMessage(level=INFO) @Message(id=9, value="Could not load class designated by HandlesTypes [%s].") void cannotLoadDesignatedHandleTypes(org.jboss.jandex.ClassInfo classInfo, @Cause Exception e)
    • couldNotLoadWebSocketEndpoint

      @LogMessage(level=WARN) @Message(id=10, value="Could not load web socket endpoint %s.") void couldNotLoadWebSocketEndpoint(String s, @Cause Exception e)
    • couldNotLoadWebSocketConfig

      @LogMessage(level=WARN) @Message(id=11, value="Could not load web socket application config %s.") void couldNotLoadWebSocketConfig(String s, @Cause Exception e)
    • startedServer

      @LogMessage(level=INFO) @Message(id=12, value="Started server %s.") void startedServer(String name)
    • invalidRedirectURI

      @LogMessage(level=WARN) @Message(id=13, value="Could not create redirect URI.") void invalidRedirectURI(@Cause Throwable cause)
    • creatingFileHandler

      @LogMessage(level=INFO) @Message(id=14, value="Creating file handler for path \'%s\' with options [directory-listing: \'%s\', follow-symlink: \'%s\', case-sensitive: \'%s\', safe-symlink-paths: \'%s\']") void creatingFileHandler(String path, boolean directoryListing, boolean followSymlink, boolean caseSensitive, List<String> safePaths)
    • invalidAbsoluteOrdering

      @LogMessage(level=WARN) @Message(id=16, value="Could not resolve name in absolute ordering: %s") void invalidAbsoluteOrdering(String name)
    • couldNotDeleteTempFile

      @LogMessage(level=WARN) @Message(id=17, value="Could not delete servlet temp file %s") void couldNotDeleteTempFile(File file)
    • hostStarting

      @LogMessage(level=INFO) @Message(id=18, value="Host %s starting") void hostStarting(String version)
    • hostStopping

      @LogMessage(level=INFO) @Message(id=19, value="Host %s stopping") void hostStopping(String version)
    • clusteringNotSupported

      @LogMessage(level=WARN) @Message(id=20, value="Clustering not supported, falling back to non-clustered session manager") void clusteringNotSupported()
    • registerWebapp

      @LogMessage(level=INFO) @Message(id=21, value="Registered web context: \'%s\' for server \'%s\'") void registerWebapp(String webappPath, String serverName)
    • unregisterWebapp

      @LogMessage(level=INFO) @Message(id=22, value="Unregistered web context: \'%s\' from server \'%s\'") void unregisterWebapp(String webappPath, String serverName)
    • skippedSCI

      @LogMessage(level=INFO) @Message(id=23, value="Skipped SCI for jar: %s.") void skippedSCI(String jar, @Cause Exception e)
    • failedToPersistSessionAttribute

      @LogMessage(level=WARN) @Message(id=24, value="Failed to persist session attribute %s with value %s for session %s") void failedToPersistSessionAttribute(String attributeName, Object value, String sessionID, @Cause Exception e)
    • failToParseXMLDescriptor

      @Message(id=27, value="Failed to parse XML descriptor %s at [%s,%s]") String failToParseXMLDescriptor(String xmlFile, Integer line, Integer column)
    • failToParseXMLDescriptor

      @Message(id=28, value="Failed to parse XML descriptor %s") String failToParseXMLDescriptor(String xmlFile)
    • invalidWebServletAnnotation

      @Message(id=29, value="@WebServlet is only allowed at class level %s") String invalidWebServletAnnotation(org.jboss.jandex.AnnotationTarget target)
    • invalidWebInitParamAnnotation

      @Message(id=30, value="@WebInitParam requires name and value on %s") String invalidWebInitParamAnnotation(org.jboss.jandex.AnnotationTarget target)
    • invalidWebFilterAnnotation

      @Message(id=31, value="@WebFilter is only allowed at class level %s") String invalidWebFilterAnnotation(org.jboss.jandex.AnnotationTarget target)
    • invalidWebListenerAnnotation

      @Message(id=32, value="@WebListener is only allowed at class level %s") String invalidWebListenerAnnotation(org.jboss.jandex.AnnotationTarget target)
    • invalidRunAsAnnotation

      @Message(id=33, value="@RunAs needs to specify a role name on %s") String invalidRunAsAnnotation(org.jboss.jandex.AnnotationTarget target)
    • invalidDeclareRolesAnnotation

      @Message(id=34, value="@DeclareRoles needs to specify role names on %s") String invalidDeclareRolesAnnotation(org.jboss.jandex.AnnotationTarget target)
    • invalidMultipartConfigAnnotation

      @Message(id=35, value="@MultipartConfig is only allowed at class level %s") String invalidMultipartConfigAnnotation(org.jboss.jandex.AnnotationTarget target)
    • invalidServletSecurityAnnotation

      @Message(id=36, value="@ServletSecurity is only allowed at class level %s") String invalidServletSecurityAnnotation(org.jboss.jandex.AnnotationTarget target)
    • wrongComponentType

      @Message(id=37, value="%s has the wrong component type, it cannot be used as a web component") RuntimeException wrongComponentType(String clazz)
    • tldFileNotContainedInRoot

      @Message(id=38, value="TLD file %s not contained in root %s") String tldFileNotContainedInRoot(String tldPath, String rootPath)
    • failedToResolveModule

      @Message(id=39, value="Failed to resolve module for deployment %s") org.jboss.as.server.deployment.DeploymentUnitProcessingException failedToResolveModule(org.jboss.as.server.deployment.DeploymentUnit deploymentUnit)
    • invalidMultipleOthers

      @Message(id=40, value="Duplicate others in absolute ordering") String invalidMultipleOthers()
    • invalidRelativeOrdering

      @Message(id=41, value="Invalid relative ordering") String invalidRelativeOrdering()
    • invalidWebFragment

      @Message(id=42, value="Conflict occurred processing web fragment in JAR: %s") String invalidWebFragment(String jar)
    • invalidRelativeOrdering

      @Message(id=43, value="Relative ordering processing error with JAR: %s") String invalidRelativeOrdering(String jar)
    • invalidRelativeOrderingBeforeAndAfter

      @Message(id=44, value="Ordering includes both before and after others in JAR: %s") String invalidRelativeOrderingBeforeAndAfter(String jar)
    • invalidRelativeOrderingDuplicateName

      @Message(id=45, value="Duplicate name declared in JAR: %s") String invalidRelativeOrderingDuplicateName(String jar)
    • invalidRelativeOrderingUnknownName

      @LogMessage(level=WARN) @Message(id=46, value="Unknown web fragment name declared in JAR: %s") void invalidRelativeOrderingUnknownName(String jar)
    • invalidRelativeOrderingConflict

      @Message(id=47, value="Relative ordering conflict with JAR: %s") String invalidRelativeOrderingConflict(String jar)
    • failToProcessWebInfLib

      @Message(id=48, value="Failed to process WEB-INF/lib: %s") String failToProcessWebInfLib(org.jboss.vfs.VirtualFile xmlFile)
    • errorLoadingSCIFromModule

      @Message(id=49, value="Error loading SCI from module: %s") org.jboss.as.server.deployment.DeploymentUnitProcessingException errorLoadingSCIFromModule(String identifier, @Cause Exception e)
    • unableToResolveAnnotationIndex

      @Message(id=50, value="Unable to resolve annotation index for deployment unit: %s") org.jboss.as.server.deployment.DeploymentUnitProcessingException unableToResolveAnnotationIndex(org.jboss.as.server.deployment.DeploymentUnit deploymentUnit)
    • errorProcessingSCI

      @Message(id=51, value="Deployment error processing SCI for jar: %s") org.jboss.as.server.deployment.DeploymentUnitProcessingException errorProcessingSCI(String jar, @Cause Exception e)
    • unknownMetric

      @Message(id=54, value="Unknown metric %s") String unknownMetric(Object metric)
    • nullDefaultHost

      @Message(id=55, value="Null default host") IllegalArgumentException nullDefaultHost()
    • nullHostName

      @Message(id=56, value="Null host name") IllegalStateException nullHostName()
    • invalidPersistentSessionDir

      @Message(id=60, value="Invalid persistent sessions directory %s") org.jboss.msc.service.StartException invalidPersistentSessionDir(File baseDir)
    • failedToCreatePersistentSessionDir

      @Message(id=61, value="Failed to create persistent sessions dir %s") org.jboss.msc.service.StartException failedToCreatePersistentSessionDir(File baseDir)
    • couldNotCreateLogDirectory

      @Message(id=62, value="Could not create log directory: %s") org.jboss.msc.service.StartException couldNotCreateLogDirectory(Path directory, @Cause IOException e)
    • noPortListeningForProtocol

      @Message(id=63, value="Could not find the port number listening for protocol %s") IllegalStateException noPortListeningForProtocol(String protocol)
    • failedToConfigureHandler

      @Message(id=64, value="Failed to configure handler %s") RuntimeException failedToConfigureHandler(Class<?> handlerClass, @Cause Exception e)
    • handlerWasNotAHandlerOrWrapper

      @Message(id=65, value="Handler class %s was not a handler or a wrapper") IllegalArgumentException handlerWasNotAHandlerOrWrapper(Class<?> handlerClass)
    • failedToConfigureHandlerClass

      @Message(id=66, value="Failed to configure handler %s") RuntimeException failedToConfigureHandlerClass(String handlerClass, @Cause Exception e)
    • servletClassNotDefined

      @Message(id=67, value="Servlet class not defined for servlet %s") IllegalArgumentException servletClassNotDefined(String servletName)
    • sharedSessionConfigNotInRootDeployment

      @LogMessage(level=ERROR) @Message(id=69, value="Ignoring shared-session-config in jboss-all.xml in deployment %s. This entry is only valid in top level deployments.") void sharedSessionConfigNotInRootDeployment(String deployment)
    • couldNotLoadHandlerFromModule

      @Message(id=70, value="Could not load handler %s from %s module") RuntimeException couldNotLoadHandlerFromModule(String className, String moduleName, @Cause Exception e)
    • alpnNotFound

      @LogMessage(level=WARN) @Message(id=71, value="No ALPN provider found, HTTP/2 will not be enabled. To remove this message set enable-http2 to false on the listener %s in the Undertow subsystem.") void alpnNotFound(String listener)
    • couldNotFindExternalPath

      @Message(id=72, value="Could not find configured external path %s") org.jboss.as.server.deployment.DeploymentUnitProcessingException couldNotFindExternalPath(File path)
    • advertiseSocketBindingRequiresMulticastAddress

      @Message(id=73, value="mod_cluster advertise socket binding requires multicast address to be set") IllegalArgumentException advertiseSocketBindingRequiresMulticastAddress()
    • tldNotFound

      @LogMessage(level=ERROR) @Message(id=74, value="Could not find TLD %s") void tldNotFound(String location)
    • failedToRegisterWebsocket

      @LogMessage(level=ERROR) @Message(id=78, value="Failed to register management view for websocket %s at %s") void failedToRegisterWebsocket(Class endpoint, String path, @Cause Exception e)
    • unsupportedValveFeature

      @LogMessage(level=WARN) @Message(id=80, value="Valves are no longer supported, %s is not activated.") void unsupportedValveFeature(String valve)
    • distributableDisabledInFragmentXml

      @LogMessage(level=WARN) @Message(id=81, value="The deployment %s will not be distributable because this feature is disabled in web-fragment.xml of the module %s.") void distributableDisabledInFragmentXml(String deployment, String module)
    • couldNotStartListener

      @Message(id=82, value="Could not start \'%s\' listener.") org.jboss.msc.service.StartException couldNotStartListener(String name, @Cause IOException e)
    • nullNotAllowed

      @Message(id=83, value="%s is not allowed to be null") String nullNotAllowed(String name)
    • duplicateDefaultWebModuleMapping

      @Message(id=87, value="Duplicate default web module \'%s\' configured on server \'%s\', host \'%s\'") IllegalArgumentException duplicateDefaultWebModuleMapping(String defaultDeploymentName, String serverName, String hostName)
    • predicateNotValid

      @Message(id=89, value="Predicate %s was not valid, message was: %s") String predicateNotValid(String predicate, String error)
    • missingKeyStoreEntry

      @Message(id=90, value="Key alias %s does not exist in the configured key store") IllegalArgumentException missingKeyStoreEntry(String alias)
    • keyStoreEntryNotPrivate

      @Message(id=91, value="Key store entry %s is not a private key entry") IllegalArgumentException keyStoreEntryNotPrivate(String alias)
    • missingCredential

      @Message(id=92, value="Credential alias %s does not exist in the configured credential store") IllegalArgumentException missingCredential(String alias)
    • credentialNotClearPassword

      @Message(id=93, value="Credential %s is not a clear text password") IllegalArgumentException credentialNotClearPassword(String alias)
    • configurationOptionIgnoredWhenUsingElytron

      @Message(id=94, value="Configuration option [%s] ignored when using Elytron subsystem") @LogMessage(level=WARN) void configurationOptionIgnoredWhenUsingElytron(String option)
    • unableAddHandlerForPath

      @Message(id=95, value="the path [\'%s\'] doesn\'t exist on file system") String unableAddHandlerForPath(String path)
    • workerValueInHTTPListenerMustMatchRemoting

      @Message(id=97, value="If http-upgrade is enabled, remoting worker and http(s) worker must be the same. Please adjust values if need be.") String workerValueInHTTPListenerMustMatchRemoting()
    • sessionManagerNotAvailable

      @Message(id=99, value="Session manager not available") org.jboss.as.controller.OperationFailedException sessionManagerNotAvailable()
    • sessionNotFound

      @Message(id=100, value="Session %s not found") org.jboss.as.controller.OperationFailedException sessionNotFound(String sessionId)
    • duplicateServletMapping

      @LogMessage(level=WARN) @Message(id=101, value="Duplicate servlet mapping %s found") void duplicateServletMapping(String mapping)
    • invalidDateTimeFormatterPattern

      @Message(id=102, value="The pattern %s is not a valid date pattern.") org.jboss.as.controller.OperationFailedException invalidDateTimeFormatterPattern(String pattern)
    • invalidTimeZoneId

      @Message(id=103, value="The time zone id %s is invalid.") org.jboss.as.controller.OperationFailedException invalidTimeZoneId(String zoneId)
    • missingClassInAnnotation

      @Message(id=104, value="Some classes referenced by annotation: %s in class: %s are missing.") org.jboss.as.server.deployment.DeploymentUnitProcessingException missingClassInAnnotation(String anCls, String resCls)
    • duplicateHostContextDeployments

      @Message(id=105, value="Host and context path are occupied, %s can\'t be registered. Message was: %s") org.jboss.msc.service.DuplicateServiceException duplicateHostContextDeployments(org.jboss.msc.service.ServiceName deploymentInfoServiceName, String errorMessage)
    • unableToObfuscateSessionRoute

      @LogMessage(level=ERROR) @Message(id=106, value="Unable to generate obfuscated session route from \'%s\'") void unableToObfuscateSessionRoute(String route, @Cause NoSuchAlgorithmException e)
    • obfuscatedSessionRoute

      @LogMessage(level=INFO) @Message(id=107, value="Generated obfuscated session route \'%s\' from \'%s\'") void obfuscatedSessionRoute(String obfuscatedRoute, String route)
    • deploymentConfiguredForLegacySecurity

      @Message(id=108, value="The deployment is configured to use legacy security which is no longer available.") org.jboss.as.server.deployment.DeploymentUnitProcessingException deploymentConfiguredForLegacySecurity()
    • legacySecurityUnsupported

      @Message(id=109, value="The deployment is configured to use legacy security which is no longer supported.") org.jboss.msc.service.StartException legacySecurityUnsupported()
    • runtimeSecurityRealmUnsupported

      @Message(id=110, value="The use of security realms at runtime is unsupported.") org.jboss.as.controller.OperationFailedException runtimeSecurityRealmUnsupported()
    • badAnnotationOnServlet

      @LogMessage(level=WARN) @Message(id=111, value="The annotation: \'%s\' will have no effect on Servlet: \'%s\'") void badAnnotationOnServlet(String annotation, String servlet)