From 8a6276d2005c20976e98626baf6414f3f0e97d35 Mon Sep 17 00:00:00 2001 From: Murtuza Chhil Date: Thu, 21 Jul 2022 07:14:45 +0530 Subject: [PATCH] Add comment to dump Bitmap in the ISOMsg dump. #488 --- jpos/src/main/java/org/jpos/iso/ISOMsg.java | 1 + 1 file changed, 1 insertion(+) diff --git a/jpos/src/main/java/org/jpos/iso/ISOMsg.java b/jpos/src/main/java/org/jpos/iso/ISOMsg.java index 608f4ddf7e..f89234e140 100644 --- a/jpos/src/main/java/org/jpos/iso/ISOMsg.java +++ b/jpos/src/main/java/org/jpos/iso/ISOMsg.java @@ -520,6 +520,7 @@ public void dump (PrintStream p, String indent) { ((Loggeable) header).dump (p, newIndent); for (int i : fields.keySet()) { + //If you want the bitmap dumped in the log, change the condition from (i >= 0) to (i >= -1). if (i >= 0) { if ((c = (ISOComponent) fields.get(i)) != null) c.dump(p, newIndent);