BUG-6937: correct format string
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / RemoteRpcImplementation.java
index 11f145ce1ee02e4f2268186961658ae53a2a926e..8d2cefbcaa3828f7d57651a552af28168c299ab9 100644 (file)
@@ -50,7 +50,7 @@ public class RemoteRpcImplementation implements DOMRpcImplementation {
             LOG.warn("Rpc {} was removed during execution or there is loop present. Failing received rpc.", rpc);
             return Futures.<DOMRpcResult, DOMRpcException>immediateFailedCheckedFuture(
                     new DOMRpcImplementationNotAvailableException(
-                            "Rpc implementation for {} was removed during processing.", rpc));
+                            "Rpc implementation for %s was removed during processing.", rpc));
         }
         final RemoteDOMRpcFuture frontEndFuture = RemoteDOMRpcFuture.create(rpc.getType().getLastComponent());
         findRouteAsync(rpc).onComplete(new OnComplete<FindRoutersReply>() {