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%2FSimpletxBaWrite.java;h=8893a70574a4ab97e8245d3474edb5c38b7999b7;hp=80e42d0efedb4e1fe5092712a87b8e7cb4a28b67;hb=refs%2Fchanges%2F64%2F84164%2F1;hpb=b08cec09b7113965fbda5ef1757ca23d7588e5cc diff --git a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxBaWrite.java b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxBaWrite.java index 80e42d0efe..8893a70574 100644 --- a/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxBaWrite.java +++ b/benchmark/dsbenchmark/src/main/java/org/opendaylight/dsbenchmark/simpletx/SimpletxBaWrite.java @@ -63,7 +63,7 @@ public class SimpletxBaWrite 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(); @@ -76,7 +76,7 @@ public class SimpletxBaWrite extends DatastoreAbstractWriter { try { tx.commit().get(); } catch (final InterruptedException | ExecutionException e) { - LOG.error("Transaction failed: {}", e); + LOG.error("Transaction failed", e); } } }