From bf95823bd121f75944e9a248731aee240f12fe5c Mon Sep 17 00:00:00 2001 From: Tom Pantelis Date: Tue, 31 Jul 2018 14:22:14 -0400 Subject: [PATCH] Change log to warn in LocalThreePhaseCommitCohort Change-Id: Ieeb60989eb3665cad9cc4dc4d25c7ab7e0983437 JIRA:CONTROLLER-1855 Signed-off-by: Tom Pantelis --- .../cluster/datastore/LocalThreePhaseCommitCohort.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LocalThreePhaseCommitCohort.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LocalThreePhaseCommitCohort.java index 1f8800f5d3..2087da0759 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LocalThreePhaseCommitCohort.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LocalThreePhaseCommitCohort.java @@ -80,7 +80,7 @@ class LocalThreePhaseCommitCohort implements DOMStoreThreePhaseCommitCohort { @Override public void onComplete(final Throwable failure, final ActorSelection success) { if (failure != null) { - LOG.info("Failed to prepare transaction {} on backend", transaction.getIdentifier(), failure); + LOG.warn("Failed to prepare transaction {} on backend", transaction.getIdentifier(), failure); transactionAborted(transaction); return; } @@ -98,7 +98,7 @@ class LocalThreePhaseCommitCohort implements DOMStoreThreePhaseCommitCohort { @Override public void onComplete(final Throwable failure, final Object message) { if (failure != null) { - LOG.error("Failed to prepare transaction {} on backend", transaction.getIdentifier(), failure); + LOG.warn("Failed to prepare transaction {} on backend", transaction.getIdentifier(), failure); transactionAborted(transaction); } else if (CommitTransactionReply.isSerializedType(message)) { LOG.debug("Transaction {} committed successfully", transaction.getIdentifier()); -- 2.36.6