From: Robert Varga Date: Wed, 23 Aug 2017 09:34:31 +0000 (+0200) Subject: Fix bluprint logging X-Git-Tag: release/oxygen~138 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=424cda925030721160e3a1e2743bfb389caeb5bb Fix bluprint logging The log call is missing arguments, leading to a useless message, fix that. Change-Id: Ia6ae2d760724d2809ce30798aaf1b32465205824 Signed-off-by: Robert Varga --- diff --git a/opendaylight/blueprint/src/main/java/org/opendaylight/controller/blueprint/ext/AbstractInvokableServiceMetadata.java b/opendaylight/blueprint/src/main/java/org/opendaylight/controller/blueprint/ext/AbstractInvokableServiceMetadata.java index 7f8afe64eb..73ce44dcd9 100644 --- a/opendaylight/blueprint/src/main/java/org/opendaylight/controller/blueprint/ext/AbstractInvokableServiceMetadata.java +++ b/opendaylight/blueprint/src/main/java/org/opendaylight/controller/blueprint/ext/AbstractInvokableServiceMetadata.java @@ -91,7 +91,7 @@ abstract class AbstractInvokableServiceMetadata extends AbstractDependentCompone final Collection 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; }