X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=benchmark%2Fdsbenchmark%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fdsbenchmark%2Fsimpletx%2FSimpletxDomDelete.java;h=4f29cdceab0b342aadefe9e153f0bdee9939e7db;hb=refs%2Fchanges%2F64%2F84164%2F1;hp=ce70d4d85441b397b0640d4ee8062f7fb611002d;hpb=c8121ea6b5bf54c43777afe6a747be40637e1f42;p=controller.git diff --git a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxDomDelete.java b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxDomDelete.java index ce70d4d854..4f29cdceab 100644 --- a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxDomDelete.java +++ b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxDomDelete.java @@ -69,7 +69,7 @@ public class SimpletxDomDelete extends DatastoreAbstractWriter { tx.commit().get(); txOk++; } catch (final InterruptedException | ExecutionException e) { - LOG.error("Transaction failed: {}", e); + LOG.error("Transaction failed", e); txError++; } tx = domDataBroker.newWriteOnlyTransaction(); @@ -80,7 +80,7 @@ public class SimpletxDomDelete extends DatastoreAbstractWriter { try { tx.commit().get(); } catch (final InterruptedException | ExecutionException e) { - LOG.error("Transaction failed: {}", e); + LOG.error("Transaction failed", e); } } }