Fix findbugs warnings
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / main / java / org / opendaylight / controller / md / sal / dom / broker / impl / SerializedDOMDataBroker.java
index db6192b348e12775f5aae0c42606aa84f7741d14..c170944940234ab5da1e9e02a5a21912a36d471c 100644 (file)
@@ -73,7 +73,7 @@ public class SerializedDOMDataBroker extends AbstractDOMDataBroker {
             commitFuture = executor.submit(new CommitCoordinationTask<>(transaction, cohorts, commitStatsTracker,
                     futureValueSupplier));
         } catch (RejectedExecutionException e) {
-            LOG.error("The commit executor's queue is full - submit task was rejected. \n" + executor, e);
+            LOG.error("The commit executor {} queue is full - submit task was rejected. \n", executor, e);
             commitFuture = Futures.immediateFailedFuture(new TransactionCommitFailedException(
                     "Could not submit the commit task - the commit queue capacity has been exceeded.", e));
         }