Skip to content

Commit

Permalink
Log expected tags to container log
Browse files Browse the repository at this point in the history
  • Loading branch information
bob-fontana committed Feb 7, 2021
1 parent cb645b7 commit 2039bcb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public void dump(Class<?> clazz) {
s_containerLogger.debug("Raw bytes: {}", Hex.encodeHexString(m_dataBytes));

List<BerTag> expectedTags = expectedTagList();
StringBuffer sb = new StringBuffer("Expected tags: Expected tags per SP 800-73-4 Appendix A: ");
StringBuffer sb = new StringBuffer("Expected tags per SP 800-73-4 Appendix A: ");
boolean firstTag = true;
for (BerTag et : expectedTags) {
if (!firstTag) sb.append(", ");
Expand All @@ -277,7 +277,7 @@ public void dump(Class<?> clazz) {
firstTag = false;
}
sb.append(" }");
s_logger.debug(sb.toString());
s_containerLogger.debug(sb.toString());

for (int i = 0; i < m_tagList.size(); i++) {
BerTag tag = m_tagList.get(i);
Expand Down

0 comments on commit 2039bcb

Please sign in to comment.