Fix bluprint logging 91/62191/1
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 23 Aug 2017 09:34:31 +0000 (11:34 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Wed, 23 Aug 2017 09:34:31 +0000 (11:34 +0200)
The log call is missing arguments, leading to a useless message,
fix that.

Change-Id: Ia6ae2d760724d2809ce30798aaf1b32465205824
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
opendaylight/blueprint/src/main/java/org/opendaylight/controller/blueprint/ext/AbstractInvokableServiceMetadata.java

index 7f8afe64eb9da35f740f62bf3b5faee0bfa3640b..73ce44dcd97c28d0d368c0f91e764c3ff7f58b77 100644 (file)
@@ -91,7 +91,7 @@ abstract class AbstractInvokableServiceMetadata extends AbstractDependentCompone
         final Collection<SchemaPath> schemaPaths = RpcUtil.decomposeRpcService(rpcInterface, schemaContext,
             rpcFilter());
         if (schemaPaths.isEmpty()) {
         final Collection<SchemaPath> schemaPaths = RpcUtil.decomposeRpcService(rpcInterface, schemaContext,
             rpcFilter());
         if (schemaPaths.isEmpty()) {
-            log.warn("{}: interface {} has no accptable entries, assuming it is satisfied");
+            log.warn("{}: interface {} has no accptable entries, assuming it is satisfied", logName(), rpcInterface);
             setSatisfied();
             return;
         }
             setSatisfied();
             return;
         }