From 19ebaaaa8f6c4286f84379067599e48d20e44c57 Mon Sep 17 00:00:00 2001 From: Moiz Raja Date: Thu, 14 Aug 2014 02:18:16 -0700 Subject: [PATCH 1/1] Add type of transaction being created to log message Change-Id: Ib8a2de78c685ef53de988fadb6bf9343ecc174dd Signed-off-by: Moiz Raja --- .../controller/cluster/datastore/TransactionProxy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/TransactionProxy.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/TransactionProxy.java index 5b5b1296af..6183c489c4 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/TransactionProxy.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/TransactionProxy.java @@ -99,7 +99,7 @@ public class TransactionProxy implements DOMStoreReadWriteTransaction { this.identifier = TransactionIdentifier.builder().memberName(memberName).counter( counter.getAndIncrement()).build(); - LOG.debug("Created txn {}", identifier); + LOG.debug("Created txn {} of type {}", identifier, transactionType); } -- 2.36.6