Fix use of raw Collections.EMPTY_{LIST,SET}
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / HwvtepMonitorCallback.java
index f73a0be23c60cfd66c0b2bab4d7f4fc23e2bc6ae..07431b3316f8c717f99c75d5704bf3c6be334d23 100644 (file)
@@ -28,14 +28,14 @@ public class HwvtepMonitorCallback implements MonitorCallBack {
 
     @Override
     public void update(TableUpdates result, DatabaseSchema dbSchema) {
-        LOG.trace("result: {} dbSchema: {}",result,dbSchema.getName());
+        LOG.trace("result: {} dbSchema: {}", result, dbSchema.getName());
         txInvoker.invoke(new HwvtepOperationalCommandAggregator(key, result, dbSchema));
         LOG.trace("update exit");
     }
 
     @Override
     public void exception(Throwable exception) {
-        LOG.warn("exception {}", exception);
+        LOG.warn("exception", exception);
     }
 
 }