Squashed commit of the following:
[ovsdb.git] / southbound / southbound-impl / src / main / java / org / opendaylight / ovsdb / southbound / ovsdb / transact / TransactInvokerImpl.java
index 07f70e6cf1c793995294384d3af06fe074deb6fa..38f4c927bd704d3e78865327b1fb7b02f7eac118 100644 (file)
@@ -33,6 +33,7 @@ public class TransactInvokerImpl implements TransactInvoker {
         TransactionBuilder tb = new TransactionBuilder(connectionInstance, dbSchema);
         command.execute(tb);
         ListenableFuture<List<OperationResult>> result = tb.execute();
+        LOG.debug("TransactInvokerImpl: command: {}, tb: {}", command, tb);
         try {
             List<OperationResult> got = result.get();
             LOG.debug("OVSDB transaction result: {}", got);