Ignore unknown subobjects while parsing RRO/ERO objects in PCEP messages
[bgpcep.git] / rsvp / spi / src / main / java / org / opendaylight / protocol / rsvp / parser / spi / subobjects / XROSubobjectListParser.java
index 6fbf469063d6474e1ac5cc680fcea3517c6a1c0b..aaddb11a95a415da8f6a2396c4efadd5638124c0 100644 (file)
@@ -48,7 +48,7 @@ public abstract class XROSubobjectListParser extends AbstractRSVPObjectParser {
             final SubobjectContainer sub = this.subobjReg.parseSubobject(type, byteBuf.readSlice(length), mandatory);
 
             if (sub == null) {
-                LOG.warn("Unknown subobject type: {}. Ignoring subobject.", type);
+                LOG.warn("Parsing failed for subobject type: {}. Ignoring subobject.", type);
             } else {
                 LOG.debug("Subobject was parsed. {}", sub);
                 subs.add(sub);