Interface ElytronMessages

  • All Superinterfaces:
    org.jboss.logging.BasicLogger

    @MessageLogger(projectCode="ELY",
                   length=5)
    @ValidIdRange(min=11001,max=11007) @ValidIdRange(min=12000,max=12999)
    interface ElytronMessages
    extends org.jboss.logging.BasicLogger
    Log messages and exceptions for Elytron.
    Author:
    David M. Lloyd, Darran Lofthouse
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      IllegalArgumentException badReconnectAttemptsNumber​(int reconnectAttempts)  
      void endpointUnavaiable​(String priority, String message, Throwable cause)  
      IllegalArgumentException invalidEventPriority​(EventPriority eventPriority)  
      IllegalArgumentException rotatingBySecondUnsupported​(String suffix)  
      IOException syslogMaximumReconnectAttemptsReached​(int reconnectAttempts)  
      PortUnreachableException udpPortUnavailable​(Throwable cause)  
      void unableToAcceptEvent​(Throwable cause)  
      void unableToRotateLogFile​(Throwable cause)  
      • 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

      • endpointUnavaiable

        @LogMessage(level=FATAL)
        @Message(id=11001,
                 value="Endpoint unable to handle SecurityEvent priority=%s, message=%s")
        void endpointUnavaiable​(String priority,
                                String message,
                                @Cause
                                Throwable cause)
      • unableToRotateLogFile

        @LogMessage(level=ERROR)
        @Message(id=11003,
                 value="Unable to rotate log file")
        void unableToRotateLogFile​(@Cause
                                   Throwable cause)
      • rotatingBySecondUnsupported

        @Message(id=11004,
                 value="Invalid suffix \"%s\" - rotating by second or millisecond is not supported")
        IllegalArgumentException rotatingBySecondUnsupported​(String suffix)
      • unableToAcceptEvent

        @LogMessage(level=FATAL)
        @Message(id=11007,
                 value="Endpoint unable to accept SecurityEvent.")
        void unableToAcceptEvent​(@Cause
                                 Throwable cause)
      • syslogMaximumReconnectAttemptsReached

        @Message(id=12001,
                 value="The maximum reconnect attempts value of %s was reached. The syslog endpoint will be shutdown.")
        IOException syslogMaximumReconnectAttemptsReached​(int reconnectAttempts)
      • badReconnectAttemptsNumber

        @Message(id=12003,
                 value="The reconnect attempts value of %s is invalid. Please use an integer value >= -1.")
        IllegalArgumentException badReconnectAttemptsNumber​(int reconnectAttempts)