Fix logging template 30/76030/1
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 12 Sep 2018 09:31:27 +0000 (11:31 +0200)
committerRobert Varga <nite@hq.sk>
Wed, 12 Sep 2018 11:02:24 +0000 (11:02 +0000)
Logger template is missing a placeholder, add it.

Change-Id: Ib1068bc4e122affc69e408da87378230607b7408
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
(cherry picked from commit cac1831a621574716e403afe7997360308758fa6)

yang/yang-parser-reactor/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/reactor/StatementContextBase.java

index df9dce6eebbe7e6808f9c505b536aee66b35bace..7dc216dcd8540b0aa980e3ac62f7a10f1682f9a7 100644 (file)
@@ -796,7 +796,7 @@ public abstract class StatementContextBase<A, D extends DeclaredStatement<A>, E
             final CopyType typeOfCopy, final QNameModule newQNameModule, final Collection<Mutable<?, ?, ?>> buffer) {
         if (needToCopyByUses(stmtContext)) {
             final Mutable<?, ?, ?> copy = target.childCopyOf(stmtContext, typeOfCopy, newQNameModule);
-            LOG.debug("Copying substatement {} for {} as", stmtContext, this, copy);
+            LOG.debug("Copying substatement {} for {} as {}", stmtContext, this, copy);
             buffer.add(copy);
         } else if (isReusedByUses(stmtContext)) {
             LOG.debug("Reusing substatement {} for {}", stmtContext, this);