From d486f486b118640e67733ca9a4db51368e05cc37 Mon Sep 17 00:00:00 2001 From: Tom Pantelis Date: Wed, 20 Jan 2016 14:01:41 -0500 Subject: [PATCH] Reduce logging in QuarantinedMonitorActor The QuarantinedMonitorActor logs every AssociationErrorEvent as warn which causes a lot of output when a peer node is down as akka raises a conneciton-refused event every 5 sec until it re-connects. Since we're only interested in the specific quarantined event, which is logged at warn, other events should log to debug to avoid the noise. Change-Id: I26ab7db9a71d137ae3227409d6dcbf39675c6ec9 Signed-off-by: Tom Pantelis --- .../cluster/common/actor/QuarantinedMonitorActor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/common/actor/QuarantinedMonitorActor.java b/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/common/actor/QuarantinedMonitorActor.java index 9d79e0f5e1..8e2693e900 100644 --- a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/common/actor/QuarantinedMonitorActor.java +++ b/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/common/actor/QuarantinedMonitorActor.java @@ -70,7 +70,7 @@ public class QuarantinedMonitorActor extends UntypedActor { LOG.debug("received AssociationErrorEvent, cause: InvalidAssociation", cause2); } } else { - LOG.warn("received AssociationErrorEvent", cause); + LOG.debug("received AssociationErrorEvent", cause); } } } -- 2.36.6