Fix use of raw Collections.EMPTY_{LIST,SET}
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / HwvtepMonitorCallback.java
index 104ee10438cd4dcf7385f0b60cba4c2136492b77..07431b3316f8c717f99c75d5704bf3c6be334d23 100644 (file)
@@ -28,14 +28,14 @@ public class HwvtepMonitorCallback implements MonitorCallBack {
 
     @Override
     public void update(TableUpdates result, DatabaseSchema dbSchema) {
-        LOG.debug("result: {} dbSchema: {}",result,dbSchema);
+        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);
     }
 
 }