Fix findbugs warnings
[controller.git] / opendaylight / md-sal / messagebus-impl / src / main / java / org / opendaylight / controller / messagebus / app / impl / EventSourceTopology.java
index 934056dcab81f2eeb81f387a6d6986c31ec5b629..50b8e4f45962532af5a1c792fb6be8da99f09ad0 100644 (file)
@@ -110,7 +110,7 @@ public class EventSourceTopology implements EventAggregatorService, EventSourceR
 
             @Override
             public void onFailure(final Throwable ex) {
-                LOG.error("Can not put data into datastore [store: {}] [path: {}] [exception: {}]",store,path, ex);
+                LOG.error("Can not put data into datastore [store: {}] [path: {}]", store, path, ex);
             }
         }, MoreExecutors.directExecutor());
     }
@@ -127,7 +127,7 @@ public class EventSourceTopology implements EventAggregatorService, EventSourceR
 
             @Override
             public void onFailure(final Throwable ex) {
-                LOG.error("Can not delete data from datastore [store: {}] [path: {}] [exception: {}]",store,path, ex);
+                LOG.error("Can not delete data from datastore [store: {}] [path: {}]", store, path, ex);
             }
         }, MoreExecutors.directExecutor());
     }