X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=benchmark%2Fdsbenchmark%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fdsbenchmark%2Ftxchain%2FTxchainDomRead.java;h=bb24f8b7b30b387c62bb29c7514dab8bacb8b351;hb=3799d989f25b1f041fa981df7cfc1598b1d129cf;hp=793ff7ee7fff3a85b784839555737ec82eac534b;hpb=9ad9f0d0b72c07316c6282995b7f11abf57041c3;p=controller.git diff --git a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/txchain/TxchainDomRead.java b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/txchain/TxchainDomRead.java index 793ff7ee7f..bb24f8b7b3 100644 --- a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/txchain/TxchainDomRead.java +++ b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/txchain/TxchainDomRead.java @@ -37,12 +37,12 @@ public class TxchainDomRead extends DatastoreAbstractWriter implements Transacti final long writesPerTx, final DataStore dataStore) { super(StartTestInput.Operation.DELETE, outerListElem, innerListElem, writesPerTx, dataStore); this.domDataBroker = domDataBroker; - LOG.info("Created TxchainDomDelete"); + LOG.debug("Created TxchainDomDelete"); } @Override public void createList() { - LOG.info("TxchainDomDelete: creating data in the data store"); + LOG.debug("TxchainDomDelete: creating data in the data store"); // Dump the whole list into the data store in a single transaction // with PUTs on the transaction @@ -73,7 +73,7 @@ public class TxchainDomRead extends DatastoreAbstractWriter implements Transacti if (optionalDataObject != null && optionalDataObject.isPresent()) { txOk++; } - } catch (ReadFailedException e) { + } catch (final ReadFailedException e) { LOG.warn("failed to ....", e); txError++; } @@ -90,6 +90,6 @@ public class TxchainDomRead extends DatastoreAbstractWriter implements Transacti @Override public void onTransactionChainSuccessful(final TransactionChain chain) { - LOG.info("TxchainDomDelete closed successfully, chain {}", chain); + LOG.debug("TxchainDomDelete closed successfully, chain {}", chain); } }