From: Moiz Raja Date: Thu, 14 Aug 2014 09:18:16 +0000 (-0700) Subject: Add type of transaction being created to log message X-Git-Tag: release/helium~222^2 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=refs%2Fchanges%2F44%2F9944%2F5 Add type of transaction being created to log message Change-Id: Ib8a2de78c685ef53de988fadb6bf9343ecc174dd Signed-off-by: Moiz Raja --- 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); }