From: Isaku Yamahata Date: Thu, 28 Jul 2016 06:08:06 +0000 (-0700) Subject: InMemoryDOMStoreThreePhaseCommitCohort: wrong trace parameter X-Git-Tag: release/boron~29 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=mdsal.git;a=commitdiff_plain;h=c1f4db5238e1f4ea76e94801de89112e5e9fa5de InMemoryDOMStoreThreePhaseCommitCohort: wrong trace parameter One parameter for trace is missing. Looks like copy-n-paste bug Change-Id: I4ca4cd8c790dfaefa7ad8b7f8e2f4f71ae85242d Signed-off-by: Isaku Yamahata --- diff --git a/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/InMemoryDOMStoreThreePhaseCommitCohort.java b/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/InMemoryDOMStoreThreePhaseCommitCohort.java index 68cc7b49b2..a7843947c0 100644 --- a/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/InMemoryDOMStoreThreePhaseCommitCohort.java +++ b/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/InMemoryDOMStoreThreePhaseCommitCohort.java @@ -66,7 +66,7 @@ class InMemoryDOMStoreThreePhaseCommitCohort implements DOMStoreThreePhaseCommit // For debugging purposes, allow dumping of the modification. Coupled with the above // precondition log, it should allow us to understand what went on. - LOG.trace("Store Tx: {} modifications: {} tree: {}", modification, store); + LOG.trace("Store Tx: {} modifications: {} tree: {}", getTransaction().getIdentifier(), modification, store); return Futures.immediateFailedFuture(new TransactionCommitFailedException("Data did not pass validation.", e)); } catch (Exception e) {