Interface JsrWebSocketLogger

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

    @MessageLogger(projectCode="UT")
    public interface JsrWebSocketLogger
    extends org.jboss.logging.BasicLogger
    log messages start at 26000
    Author:
    Norman Maurer
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void addingAnnotatedClientEndpoint​(java.lang.Class<?> endpoint)  
      void addingAnnotatedServerEndpoint​(java.lang.Class<?> endpoint, java.lang.String value)  
      void addingProgramaticEndpoint​(java.lang.Class<?> endpointClass, java.lang.String path)  
      void bufferPoolWasNull()  
      java.lang.IllegalArgumentException bufferPoolWasNullAndNoDefault()  
      void couldNotCloseOnUndeploy​(java.lang.Exception e)  
      void couldNotInitializeConfiguration​(java.lang.Class<?> clazz, java.lang.Throwable t)  
      void endpointCreationFailed​(java.lang.Exception cause)  
      void exceptionInWebSocketMethod​(java.lang.Throwable e)  
      void pathTemplateNotFound​(java.lang.Class<?> endpointClass, jakarta.websocket.server.PathParam param, java.lang.reflect.Method method, java.util.Set<java.lang.String> paths)  
      void xnioWorkerWasNull()  
      java.lang.IllegalArgumentException xnioWorkerWasNullAndNoDefault()  
      • 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

      • endpointCreationFailed

        @LogMessage(level=ERROR)
        @Message(id=26001,
                 value="Unable to instantiate endpoint")
        void endpointCreationFailed​(@Cause
                                    java.lang.Exception cause)
      • couldNotInitializeConfiguration

        @LogMessage(level=ERROR)
        @Message(id=26002,
                 value="Unable to instantiate server configuration %s")
        void couldNotInitializeConfiguration​(java.lang.Class<?> clazz,
                                             @Cause
                                             java.lang.Throwable t)
      • addingAnnotatedServerEndpoint

        @LogMessage(level=INFO)
        @Message(id=26003,
                 value="Adding annotated server endpoint %s for path %s")
        void addingAnnotatedServerEndpoint​(java.lang.Class<?> endpoint,
                                           java.lang.String value)
      • addingAnnotatedClientEndpoint

        @LogMessage(level=INFO)
        @Message(id=26004,
                 value="Adding annotated client endpoint %s")
        void addingAnnotatedClientEndpoint​(java.lang.Class<?> endpoint)
      • addingProgramaticEndpoint

        @LogMessage(level=INFO)
        @Message(id=26005,
                 value="Adding programmatic server endpoint %s for path %s")
        void addingProgramaticEndpoint​(java.lang.Class<?> endpointClass,
                                       java.lang.String path)
      • exceptionInWebSocketMethod

        @LogMessage(level=ERROR)
        @Message(id=26006,
                 value="Exception running web socket method")
        void exceptionInWebSocketMethod​(@Cause
                                        java.lang.Throwable e)
      • pathTemplateNotFound

        @LogMessage(level=WARN)
        @Message(id=26007,
                 value="On Endpoint class %s path param %s on method %s does not reference a valid parameter, valid parameters are %s.")
        void pathTemplateNotFound​(java.lang.Class<?> endpointClass,
                                  jakarta.websocket.server.PathParam param,
                                  java.lang.reflect.Method method,
                                  java.util.Set<java.lang.String> paths)
      • couldNotCloseOnUndeploy

        @LogMessage(level=ERROR)
        @Message(id=26008,
                 value="Could not close endpoint on undeploy.")
        void couldNotCloseOnUndeploy​(@Cause
                                     java.lang.Exception e)
      • xnioWorkerWasNull

        @LogMessage(level=WARN)
        @Message(id=26009,
                 value="XNIO worker was not set on WebSocketDeploymentInfo, the default worker will be used")
        void xnioWorkerWasNull()
      • bufferPoolWasNull

        @LogMessage(level=WARN)
        @Message(id=26010,
                 value="Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used")
        void bufferPoolWasNull()
      • xnioWorkerWasNullAndNoDefault

        @Message(id=26011,
                 value="XNIO worker was not set on WebSocketDeploymentInfo, and there is no default to use")
        java.lang.IllegalArgumentException xnioWorkerWasNullAndNoDefault()
      • bufferPoolWasNullAndNoDefault

        @Message(id=26012,
                 value="Buffer pool was not set on WebSocketDeploymentInfo, and there is no default to use")
        java.lang.IllegalArgumentException bufferPoolWasNullAndNoDefault()