Fixup Augmentable and Identifiable methods changing
[controller.git] / benchmark / dsbenchmark / src / main / java / org / opendaylight / dsbenchmark / txchain / TxchainDomWrite.java
index 4811616b213a151e684a22ad862e6428d60afede..52f574ab1c0ecf240b20378fbccb5dd434aead9b 100644 (file)
@@ -40,7 +40,7 @@ public class TxchainDomWrite extends DatastoreAbstractWriter implements Transact
             final int innerListElem, final long writesPerTx, final DataStore dataStore) {
         super(oper, outerListElem, innerListElem, writesPerTx, dataStore);
         this.domDataBroker = domDataBroker;
-        LOG.info("Created TxchainDomWrite");
+        LOG.debug("Created TxchainDomWrite");
     }
 
     @Override
@@ -99,17 +99,17 @@ public class TxchainDomWrite extends DatastoreAbstractWriter implements Transact
             txSubmitted++;
             tx.submit().checkedGet();
             txOk++;
-        } catch (TransactionCommitFailedException e) {
+        } catch (final TransactionCommitFailedException e) {
             LOG.error("Transaction failed", e);
             txError++;
         }
         try {
             chain.close();
-        } catch (IllegalStateException e) {
+        } catch (final IllegalStateException e) {
             LOG.error("Transaction close failed,", e);
         }
 
-        LOG.info("Transactions: submitted {}, completed {}", txSubmitted, (txOk + txError));
+        LOG.debug("Transactions: submitted {}, completed {}", txSubmitted, (txOk + txError));
     }
 
     @Override
@@ -121,7 +121,7 @@ public class TxchainDomWrite extends DatastoreAbstractWriter implements Transact
 
     @Override
     public void onTransactionChainSuccessful(final TransactionChain<?, ?> chain) {
-        LOG.info("Chain {} closed successfully", chain);
+        LOG.debug("Chain {} closed successfully", chain);
     }
 
 }