X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=benchmark%2Fdsbenchmark%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fdsbenchmark%2Fsimpletx%2FSimpletxDomRead.java;h=2ee2aee84c2df3173755ef07cb9457615e7a31c8;hb=0b7a749d896b17209dfe9e65c7732d7a6212daa3;hp=0edccbf3aff9b696b37b4d4652f705896246dfb7;hpb=9ad9f0d0b72c07316c6282995b7f11abf57041c3;p=controller.git diff --git a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxDomRead.java b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxDomRead.java index 0edccbf3af..2ee2aee84c 100644 --- a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxDomRead.java +++ b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxDomRead.java @@ -36,13 +36,13 @@ public class SimpletxDomRead extends DatastoreAbstractWriter { final int innerListElem, final long writesPerTx, final DataStore dataStore) { super(StartTestInput.Operation.DELETE, outerListElem, innerListElem, writesPerTx, dataStore); this.domDataBroker = domDataBroker; - LOG.info("Created simpleTxDomRead"); + LOG.debug("Created simpleTxDomRead"); } @Override public void createList() { - LOG.info("SimpletxDomRead: creating data in the data store"); + LOG.debug("SimpletxDomRead: creating data in the data store"); // Dump the whole list into the data store in a single transaction // with PUTs on the transaction SimpletxDomWrite dd = new SimpletxDomWrite(domDataBroker, @@ -70,13 +70,13 @@ public class SimpletxDomRead extends DatastoreAbstractWriter { Optional> optionalDataObject = submitFuture.checkedGet(); if (optionalDataObject != null && optionalDataObject.isPresent()) { NormalizedNode ret = optionalDataObject.get(); - LOG.info("/n" + String.valueOf(ret)); + LOG.trace("optionalDataObject is {}", ret); txOk++; } else { txError++; LOG.warn("optionalDataObject is either null or .isPresent is false"); } - } catch (ReadFailedException e) { + } catch (final ReadFailedException e) { LOG.warn("failed to ....", e); txError++; }