@MessageLogger(projectCode="JBAS") public interface ClusteringImplLogger extends ClusteringApiLogger
Modifier and Type | Field and Description |
---|---|
static ClusteringImplLogger |
ROOT_LOGGER |
ROOT_LOGGER_CATEGORY
Modifier and Type | Method and Description |
---|---|
void |
errorDestroyingService(Throwable cause)
Logs an error message indicating an error occurred while destroying the service.
|
void |
exceptionInStop(Throwable cause)
Logs a warning message indicating an exception occurred while stopping.
|
void |
invalidPartitionMessage(String groupName)
Logs a warning message indicating the partition, represented by the
groupName parameter, message wrapper
does not contain an MethodCall object. |
void |
invalidPartitionMessageWrapper(String groupName)
Logs a warning message indicating the partition, represented by the
groupName parameter, message wrapper
does not contain an Object[] array. |
void |
lockManagerStopFailed(Throwable cause) |
void |
memberShipListenerCallbackFailure(Throwable cause,
GroupMembershipListener listener)
Logs a warning message indicating the membership listener had a failed callback.
|
void |
methodFailure(Throwable cause,
String methodName)
Logs an error message indicating the method failed.
|
void |
methodFailure(Throwable cause,
String methodName,
String serviceName)
Logs an error message indicating the method failed for a service.
|
void |
newClusterCurrentView(String groupName,
long viewId,
int difference,
boolean isMerge,
Collection<ClusterNode> allMembers)
Logs an informational message with information on a new cluster view.
|
void |
newClusterView(String groupName,
long viewId,
CoreGroupCommunicationService.GroupView groupView,
int difference,
boolean isMerge)
Logs an informational message with information on a new cluster view.
|
void |
notRegisteredToReceiveState(String className,
String serviceName)
Logs a warning message indicating the class represented by the
className parameter was not registered to
receive state for the service represented by the serviceName . |
void |
nullPartitionMessage(String groupName)
Logs a warning message indicating the partition, represented by the
groupName parameter, message or the
message buffer is null . |
void |
partitionFailedExtractingMessageBody(Throwable cause,
String groupName)
Logs a warning message indicating the partition, represented by the
groupName parameter, failed while
extracting the message body from the request bytes. |
void |
partitionFailedUnserialing(Throwable cause,
String groupName,
org.jgroups.Message request)
Logs an informational message indicating the partition, represented by the
groupName parameter, failed
to unserialize the message buffer, represented by the request parameter. |
void |
receivedConcurrentStateRequests(String serviceName)
Logs a warning message indicating that concurrent requests were received to get service state.
|
void |
suspectedMember(org.jgroups.Address suspectedMember)
Logs an informational message indicating the suspected member.
|
caughtErrorInvokingAsyncMethod, caughtInterruptedException, channelDisconnectError, deprecatedAttribute, errorHandlingAsyncEvent, failedSettingServiceProperty, failedToStop, numberOfClusterMembers, receivedRemoteLockFromSelf, threadInterrupted
debug, debug, debug, debug, 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, 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
static final ClusteringImplLogger ROOT_LOGGER
@LogMessage(level=ERROR) @Message(id=10240, value="Error destroying service") void errorDestroyingService(@Cause Throwable cause)
cause
- the cause of the error.@LogMessage(level=WARN) @Message(id=10241, value="Exception in stop") void exceptionInStop(@Cause Throwable cause)
cause
- the cause of the error.@LogMessage(level=WARN) @Message(id=10242, value="Partition %s message wrapper does not contain Object[] object!") void invalidPartitionMessageWrapper(String groupName)
groupName
parameter, message wrapper
does not contain an Object[]
array.groupName
- the partition group name.@LogMessage(level=WARN) @Message(id=10243, value="Partition %s message does not contain a MethodCall object!") void invalidPartitionMessage(String groupName)
groupName
parameter, message wrapper
does not contain an MethodCall
object.groupName
- the partition group name.@LogMessage(level=WARN) @Message(id=10244, value="Membership listener callback failure: %s") void memberShipListenerCallbackFailure(@Cause Throwable cause, GroupMembershipListener listener)
cause
- the cause of the error.listener
- the listener in error.@LogMessage(level=ERROR) @Message(id=10245, value="%s failed") void methodFailure(@Cause Throwable cause, String methodName)
cause
- the cause of the error.methodName
- the name of the method that failed.@LogMessage(level=ERROR) @Message(id=10246, value="%s failed for service %s") void methodFailure(@Cause Throwable cause, String methodName, String serviceName)
cause
- the cause of the error.methodName
- the name fo the method that failed.serviceName
- the service name.@LogMessage(level=INFO) @Message(id=10247, value="New cluster view for partition %s (id: %d, delta: %d, merge: %b) : %s") void newClusterCurrentView(String groupName, long viewId, int difference, boolean isMerge, Collection<ClusterNode> allMembers)
groupName
- the group name.viewId
- the new view id.difference
- the size difference between the old group and the new group.isMerge
- true
if this was a merge view, otherwise false
.allMembers
- a collection of all the new members.@LogMessage(level=INFO) @Message(id=10248, value="New cluster view for partition %s: %d (%s delta: %d, merge: %b)") void newClusterView(String groupName, long viewId, CoreGroupCommunicationService.GroupView groupView, int difference, boolean isMerge)
groupName
- the group name.viewId
- the new view id.groupView
- the group view.difference
- the size difference between the old group and the new group.isMerge
- true
if this was a merge view, otherwise false
.@LogMessage(level=WARN) @Message(id=10249, value="No %s registered to receive state for service %s") void notRegisteredToReceiveState(String className, String serviceName)
className
parameter was not registered to
receive state for the service represented by the serviceName
.className
- the class name where the service should be registered.serviceName
- the service name.@LogMessage(level=WARN) @Message(id=10250, value="Partition %s message or message buffer is null!") void nullPartitionMessage(String groupName)
groupName
parameter, message or the
message buffer is null
.groupName
- the partition group name.@LogMessage(level=WARN) @Message(id=10251, value="Partition %s failed extracting message body from request bytes") void partitionFailedExtractingMessageBody(@Cause Throwable cause, String groupName)
groupName
parameter, failed while
extracting the message body from the request bytes.cause
- the cause of the error.groupName
- the partition group name.@LogMessage(level=WARN) @Message(id=10252, value="Partition %s failed unserializing message buffer (msg=%s)") void partitionFailedUnserialing(@Cause Throwable cause, String groupName, org.jgroups.Message request)
groupName
parameter, failed
to unserialize the message buffer, represented by the request
parameter.cause
- the cause of the error.groupName
- the partition group name.request
- the message.@LogMessage(level=WARN) @Message(id=10253, value="Received concurrent requests to get service state for %s") void receivedConcurrentStateRequests(String serviceName)
serviceName
- the service name the request was sent for.@LogMessage(level=INFO) @Message(id=10254, value="Suspected member: %s") void suspectedMember(org.jgroups.Address suspectedMember)
suspectedMember
- the suspected member.@LogMessage(level=WARN) @Message(id=10255, value="Failed to stop lock manager") void lockManagerStopFailed(@Cause Throwable cause)
Copyright © 2013 JBoss, a division of Red Hat, Inc.. All rights reserved.