Fix logging placeholders
[mdsal.git] / dom / mdsal-dom-broker / src / main / java / org / opendaylight / mdsal / dom / broker / ShardedDOMWriteTransactionAdapter.java
index b3222e0c91d3e48147c5f124e24d6a2e2352bab7..073529bf15f530f373316c02f9959fa8fa9751e6 100644 (file)
@@ -55,7 +55,7 @@ public class ShardedDOMWriteTransactionAdapter implements DOMDataTreeWriteTransa
 
     @Override
     public boolean cancel() {
-        LOG.debug("{}: Cancelling transaction");
+        LOG.debug("{}: Cancelling transaction", txIdentifier);
         if (finished) {
             return false;
         }
@@ -160,7 +160,7 @@ public class ShardedDOMWriteTransactionAdapter implements DOMDataTreeWriteTransa
         transactionMap.put(LogicalDatastoreType.OPERATIONAL,
                 producerMap.get(LogicalDatastoreType.OPERATIONAL).createTransaction(true));
 
-        LOG.debug("{}: Creating DOMDataTreeWriteCursors delegates");
+        LOG.debug("{}: Creating DOMDataTreeWriteCursors delegates", txIdentifier);
         cursorMap.put(LogicalDatastoreType.CONFIGURATION,
                 transactionMap.get(LogicalDatastoreType.CONFIGURATION)
                         .createCursor(new DOMDataTreeIdentifier(LogicalDatastoreType.CONFIGURATION, path)));