commit | b5255ff34d24a2c9b85967e2dc00f84cd72406bf | [log] [tgz] |
---|---|---|
author | Andrea Campanella <andrea@opennetworking.org> | Fri Jul 10 11:40:38 2020 +0200 |
committer | Andrea Campanella <andrea@opennetworking.org> | Fri Jul 10 11:40:43 2020 +0200 |
tree | e80d7cedd2a894e9ea9f4b52c74dea4750717026 | |
parent | 969e8af0b9cd20af95e4ce5cbe206b096fc2a749 [diff] |
Lowering error log for optional TLV type in LLDP packet Processing of the LLDP packet can proceed with no issue without the TLV and null cases are handled in sequent methods. This shoudl not be treated as an error warning. Change-Id: I3c201ca1c9daaf030fed6dbb09a6608527df283d
diff --git a/utils/misc/src/main/java/org/onlab/packet/ONOSLLDP.java b/utils/misc/src/main/java/org/onlab/packet/ONOSLLDP.java index 9b379f6..ded5a90 100644 --- a/utils/misc/src/main/java/org/onlab/packet/ONOSLLDP.java +++ b/utils/misc/src/main/java/org/onlab/packet/ONOSLLDP.java
@@ -252,7 +252,7 @@ } } - log.error("Cannot find the port description tlv type."); + log.debug("Cannot find the port description tlv type."); return null; }