From: Ed Warnicke Date: Mon, 25 Aug 2014 09:06:24 +0000 (+0000) Subject: Merge "Add type of transaction being created to log message" X-Git-Tag: release/helium~222 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=29fe37ff64a4c58f3ed16f31b4371151d8bcbdb9;hp=61d80159fc45a9671cc34e8e3077f789ae18e63c Merge "Add type of transaction being created to log message" --- 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); }