Fix findbugs warnings
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / NoOpTransactionContext.java
index 03ed5ad0ea8c38fd4f3ad200285049feb165b36d..89a8c03c6a0272b6e38d04139cc5a85877aa5256 100644 (file)
@@ -38,14 +38,14 @@ final class NoOpTransactionContext extends AbstractTransactionContext {
 
     @Override
     public Future<Object> directCommit(final Boolean havePermit) {
-        LOG.debug("Tx {} directCommit called, failure: {}", getIdentifier(), failure);
+        LOG.debug("Tx {} directCommit called, failure", getIdentifier(), failure);
         return akka.dispatch.Futures.failed(failure);
     }
 
     @Override
     public Future<ActorSelection> readyTransaction(final Boolean havePermit,
             final Optional<SortedSet<String>> participatingShardNamess) {
-        LOG.debug("Tx {} readyTransaction called, failure: {}", getIdentifier(), failure);
+        LOG.debug("Tx {} readyTransaction called, failure", getIdentifier(), failure);
         return akka.dispatch.Futures.failed(failure);
     }