From: Madhu Venugopal Date: Wed, 25 Sep 2013 15:13:18 +0000 (+0000) Subject: Merge "Silent false positive, and enhance real error message" X-Git-Tag: releasepom-0.1.0~14 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=bc810c6b69d5934eb6a8889d09e9811ad1817b9b;hp=17c1485e008e4b90e955841c0672c12ed3a7344e Merge "Silent false positive, and enhance real error message" --- diff --git a/opendaylight/clustering/services_implementation/src/main/java/org/infinispan/interceptors/distribution/BaseDistributionInterceptor.java b/opendaylight/clustering/services_implementation/src/main/java/org/infinispan/interceptors/distribution/BaseDistributionInterceptor.java index e10563797d..6c6715d220 100644 --- a/opendaylight/clustering/services_implementation/src/main/java/org/infinispan/interceptors/distribution/BaseDistributionInterceptor.java +++ b/opendaylight/clustering/services_implementation/src/main/java/org/infinispan/interceptors/distribution/BaseDistributionInterceptor.java @@ -134,9 +134,9 @@ public abstract class BaseDistributionInterceptor extends ClusteringInterceptor rpcManager.invokeRemotely(recipientGenerator.generateRecipients(), command, rpcManager.getDefaultRpcOptions(isSync)); } else { - log.errorf("Didn't invoke RPC because primaryOwner (%s) didn't match this node (%s)", primaryOwner, + log.tracef("Didn't invoke RPC because primaryOwner (%s) didn't match this node (%s)", primaryOwner, rpcManager.getAddress()); - log.errorf("Hashcode is (%s) for Key (%s) .. it could be inconsistent in the cluster!", + log.tracef("Hashcode is (%s) for Key (%s)", command.getKey().hashCode(), command.getKey()); } return returnValue; diff --git a/opendaylight/forwardingrulesmanager/implementation/src/main/java/org/opendaylight/controller/forwardingrulesmanager/internal/FlowEntryDistributionOrderFutureTask.java b/opendaylight/forwardingrulesmanager/implementation/src/main/java/org/opendaylight/controller/forwardingrulesmanager/internal/FlowEntryDistributionOrderFutureTask.java index a51409fc2d..0c105bae1e 100644 --- a/opendaylight/forwardingrulesmanager/implementation/src/main/java/org/opendaylight/controller/forwardingrulesmanager/internal/FlowEntryDistributionOrderFutureTask.java +++ b/opendaylight/forwardingrulesmanager/implementation/src/main/java/org/opendaylight/controller/forwardingrulesmanager/internal/FlowEntryDistributionOrderFutureTask.java @@ -87,7 +87,8 @@ final class FlowEntryDistributionOrderFutureTask implements Future { // Return the known status return retStatus; } else { - logger.error("Timing out, the workStatus for order {} has not come back in time!", this.order); + logger.error("Timing out, the workStatus for order {} has not come back in time!, it's hashcode is {}", + this.order, this.order.hashCode()); return new Status(StatusCode.TIMEOUT); } }