X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=benchmark%2Fdsbenchmark%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fdsbenchmark%2Fsimpletx%2FSimpletxBaDelete.java;h=be52c401fd3f37f400830d166f282a2424cda2f5;hp=f41cb1f50e6d5c494ef1d5a9a7d296a9cf7fb2f1;hb=HEAD;hpb=793318ca32e9180614b68625eebb7dad902bf120 diff --git a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxBaDelete.java b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxBaDelete.java index f41cb1f50e..be52c401fd 100644 --- a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxBaDelete.java +++ b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxBaDelete.java @@ -64,7 +64,7 @@ public class SimpletxBaDelete extends DatastoreAbstractWriter { tx.commit().get(); txOk++; } catch (final InterruptedException | ExecutionException e) { - LOG.error("Transaction failed: {}", e); + LOG.error("Transaction failed", e); txError++; } tx = dataBroker.newWriteOnlyTransaction(); @@ -75,7 +75,7 @@ public class SimpletxBaDelete extends DatastoreAbstractWriter { try { tx.commit().get(); } catch (final InterruptedException | ExecutionException e) { - LOG.error("Transaction failed: {}", e); + LOG.error("Transaction failed", e); } } }