Add missing exception to log message in SchemaAwareRpcBroker 94/6794/1
authorMaros Marsalek <mmarsale@cisco.com>
Wed, 7 May 2014 15:13:00 +0000 (17:13 +0200)
committerMaros Marsalek <mmarsale@cisco.com>
Wed, 7 May 2014 15:13:00 +0000 (17:13 +0200)
Change-Id: I1e8196babd9f5486fbe1edadba5f610f00d1ac37
Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/impl/SchemaAwareRpcBroker.java

index 3e7b115f11e28667114c798062bd4737cda9f333..f47e1efc3fb364d812c08721b3e1b2d78ee6a056 100644 (file)
@@ -457,7 +457,7 @@ public class SchemaAwareRpcBroker implements RpcRouter, Identifiable<String>, Ro
         try {
         listener.onRouteChange(initial);
         } catch (Exception e) {
-            LOG.error("Unhandled exception during sending initial route change event {} to {}",initial,listener);
+            LOG.error("Unhandled exception during sending initial route change event {} to {}",initial,listener, e);
         }
         return reg;
     }