X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-clustering-commons%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fcommon%2Factor%2FAbstractUntypedActor.java;h=21a0cb6a889a78cf31910198eadc79f6c53f10e3;hb=664fc9940569ebfd54dcfc3db87bab66fad9300e;hp=cf37cbdd005effaacb2294edd9308b8598e9788f;hpb=5a15471e74536f8fe6d62747b7b822655a17dd4e;p=controller.git diff --git a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/common/actor/AbstractUntypedActor.java b/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/common/actor/AbstractUntypedActor.java index cf37cbdd00..21a0cb6a88 100644 --- a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/common/actor/AbstractUntypedActor.java +++ b/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/common/actor/AbstractUntypedActor.java @@ -30,11 +30,11 @@ public abstract class AbstractUntypedActor extends UntypedActor { @Override public void onReceive(Object message) throws Exception { final String messageType = message.getClass().getSimpleName(); if(LOG.isDebugEnabled()) { - LOG.debug("Received message {}", messageType); +// LOG.debug("Received message {}", messageType); } handleReceive(message); if(LOG.isDebugEnabled()) { - LOG.debug("Done handling message {}", messageType); +// LOG.debug("Done handling message {}", messageType); } }