Skip to content

Commit 22eb9fa

Browse files
committed
OptionalParameter:deserialize log level changed to DEBUG. INFO makes too much noise for LOG4J when delivery report has unknown tag
1 parent 4251dc1 commit 22eb9fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsmpp/src/main/java/org/jsmpp/bean/OptionalParameters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public static OptionalParameter.Byte newSarTotalSegments(int value) {
110110
public static OptionalParameter deserialize(short tagCode, byte[] content) {
111111
Tag tag = Tag.valueOf(tagCode);
112112
if (tag == null) {
113-
logger.info("Optional Parameter Tag not recognized for deserialization: {}", tagCode);
113+
logger.debug("Optional Parameter Tag not recognized for deserialization: {}", tagCode);
114114
return new OctetString(tagCode, content);
115115
}
116116

0 commit comments

Comments
 (0)