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
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final JGroupsLogger
    The root logger.
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Logs an informational message indicating the JGroups subsystem is being activated.
    void
    connected(String channelName, String nodeName, String clusterName, org.jgroups.View view)
     
    void
    connecting(String channelName, String nodeName, String clusterName, InetSocketAddress address)
     
    void
    disconnected(String channelName, String nodeName, String clusterName)
     
    void
    disconnecting(String channelName, String nodeName, String clusterName, org.jgroups.View view)
     
    failedToResolveSocketBinding(UnknownHostException cause, org.jboss.as.network.OutboundSocketBinding binding)
     
     
    void
    legacyProtocol(String legacyProtocol, String targetProtocol)
     
    notFound(String resource)
    A message indicating a resource could not be located.
    A message indicating a file could not be parsed.
    org.jboss.as.controller.OperationFailedException
     
    org.jboss.as.controller.OperationFailedException
     
     
     
    unknownMetric(String metricName)
     
    void
     

    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

  • Method Details

    • 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)
    • keyEntryNotFound

      @Message(id=22, value="%s entry not found in configured key store") IllegalArgumentException keyEntryNotFound(String alias)
    • 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)