From: Robert Varga Date: Sat, 12 Mar 2022 03:41:11 +0000 (+0100) Subject: Include namespace manipulations in error report X-Git-Tag: v9.0.0~15 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F88%2F100088%2F1;p=mdsal.git Include namespace manipulations in error report We need squashing information to make sense of what the requirement is attempting to do, include it in toString(). Change-Id: Ieeb913680990acb5ccd8690b28c55e4a72f5836e Signed-off-by: Robert Varga --- diff --git a/binding/mdsal-binding-generator/src/main/java/org/opendaylight/mdsal/binding/generator/impl/reactor/AugmentRequirement.java b/binding/mdsal-binding-generator/src/main/java/org/opendaylight/mdsal/binding/generator/impl/reactor/AugmentRequirement.java index deef7580f0..07142a3c8a 100644 --- a/binding/mdsal-binding-generator/src/main/java/org/opendaylight/mdsal/binding/generator/impl/reactor/AugmentRequirement.java +++ b/binding/mdsal-binding-generator/src/main/java/org/opendaylight/mdsal/binding/generator/impl/reactor/AugmentRequirement.java @@ -75,6 +75,8 @@ final class AugmentRequirement implements Mutable { .add("augment", augment) .add("target", target) .add("qname", qname) + .add("squash", squashNamespaces) + .add("local", localNamespace) .toString(); }