Interface JGroupsLogger

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

    @MessageLogger(projectCode="WFLYCLJG",
                   length=4)
    public interface JGroupsLogger
    extends org.jboss.logging.BasicLogger
    Author:
    James R. Perkins, David M. Lloyd
    • Method Detail

      • activatingSubsystem

        @LogMessage(level=INFO)
        @Message(id=1,
                 value="Activating JGroups subsystem. JGroups version %s")
        void activatingSubsystem​(String version)
        Logs an informational message indicating the JGroups subsystem is being activated.
      • parserFailure

        @Message(id=7,
                 value="Failed to parse %s")
        String parserFailure​(URL url)
        A message indicating a file could not be parsed.
        Parameters:
        url - the path to the file.
        Returns:
        the message.
      • notFound

        @Message(id=8,
                 value="Failed to locate %s")
        String notFound​(String resource)
        A message indicating a resource could not be located.
        Parameters:
        resource - the resource that could not be located.
        Returns:
        the message.
      • transportNotDefined

        @Message(id=10,
                 value="Transport for stack %s is not defined. Please specify both a transport and protocol list, either as optional parameters to add() or via batching.")
        org.jboss.as.controller.OperationFailedException transportNotDefined​(String stackName)
      • unknownMetric

        @Message(id=15,
                 value="Unknown metric %s")
        String unknownMetric​(String metricName)
      • unableToLoadProtocolClass

        @Message(id=16,
                 value="Unable to load protocol class %s")
        org.jboss.as.controller.OperationFailedException unableToLoadProtocolClass​(String protocolName)
      • unexpectedKeyStoreEntryType

        @Message(id=23,
                 value="%s key store entry is not of the expected type: %s")
        IllegalArgumentException unexpectedKeyStoreEntryType​(String alias,
                                                             String type)
      • unexpectedCredentialSource

        @Message(id=25,
                 value="Configured credential source does not reference a clear-text password credential")
        IllegalArgumentException unexpectedCredentialSource()
      • failedToResolveSocketBinding

        @Message(id=28,
                 value="Could not resolve destination address for outbound socket binding named \'%s\'")
        IllegalArgumentException failedToResolveSocketBinding​(@Cause
                                                              UnknownHostException cause,
                                                              org.jboss.as.network.OutboundSocketBinding binding)
      • legacyProtocol

        @LogMessage(level=WARN)
        @Message(id=30,
                 value="Protocol %s is obsolete and will be auto-updated to %s")
        void legacyProtocol​(String legacyProtocol,
                            String targetProtocol)
      • unrecognizedProtocolProperty

        @LogMessage(level=WARN)
        @Message(id=31,
                 value="Ignoring unrecognized %s property: %s")
        void unrecognizedProtocolProperty​(String protocol,
                                          String property)
      • connecting

        @LogMessage(level=INFO)
        @Message(id=32,
                 value="Connecting \'%s\' channel. \'%s\' joining cluster \'%s\' via %s")
        void connecting​(String channelName,
                        String nodeName,
                        String clusterName,
                        InetSocketAddress address)
      • connected

        @LogMessage(level=INFO)
        @Message(id=33,
                 value="Connected \'%s\' channel. \'%s\' joined cluster \'%s\' with view: %s")
        void connected​(String channelName,
                       String nodeName,
                       String clusterName,
                       org.jgroups.View view)
      • disconnecting

        @LogMessage(level=INFO)
        @Message(id=34,
                 value="Disconnecting \'%s\' channel. \'%s\' leaving cluster \'%s\' with view: %s")
        void disconnecting​(String channelName,
                           String nodeName,
                           String clusterName,
                           org.jgroups.View view)
      • disconnected

        @LogMessage(level=INFO)
        @Message(id=35,
                 value="Disconnected \'%s\' channel. \'%s\' left cluster \'%s\'")
        void disconnected​(String channelName,
                          String nodeName,
                          String clusterName)