X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=benchmark%2Fdsbenchmark%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fdsbenchmark%2Ftxchain%2FTxchainBaRead.java;h=20694ca5d36671f7f1d1a1bd89972d84d964d4de;hb=f9814cf027886294b74fb6c8748f4a3e0a545e86;hp=19a0bfeae8e528d335b08e5e4b19343899d153f3;hpb=9ad9f0d0b72c07316c6282995b7f11abf57041c3;p=controller.git diff --git a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/txchain/TxchainBaRead.java b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/txchain/TxchainBaRead.java index 19a0bfeae8..20694ca5d3 100644 --- a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/txchain/TxchainBaRead.java +++ b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/txchain/TxchainBaRead.java @@ -36,12 +36,12 @@ public class TxchainBaRead extends DatastoreAbstractWriter implements Transactio final long writesPerTx, final DataStore dataStore) { super(StartTestInput.Operation.DELETE, outerListElem, innerListElem, writesPerTx, dataStore); this.bindingDataBroker = bindingDataBroker; - LOG.info("Created TxchainBaRead"); + LOG.debug("Created TxchainBaRead"); } @Override public void createList() { - LOG.info("TxchainBaRead: reading data in the data store"); + LOG.debug("TxchainBaRead: reading data in the data store"); // Dump the whole list into the data store in a single transaction // with PUTs on the transaction @@ -91,7 +91,7 @@ public class TxchainBaRead extends DatastoreAbstractWriter implements Transactio } else { txError++; } - } catch (ReadFailedException e) { + } catch (final ReadFailedException e) { LOG.warn("failed to ....", e); txError++; } @@ -108,7 +108,7 @@ public class TxchainBaRead extends DatastoreAbstractWriter implements Transactio @Override public void onTransactionChainSuccessful(final TransactionChain chain) { - LOG.info("TxchainBaDelete closed successfully, chain {}", chain); + LOG.debug("TxchainBaDelete closed successfully, chain {}", chain); } }