Skip to content

Commit

Permalink
Add comment to dump Bitmap in the ISOMsg dump. #488
Browse files Browse the repository at this point in the history
  • Loading branch information
chhil authored and ar committed Jul 21, 2022
1 parent 57e6eef commit 8a6276d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions jpos/src/main/java/org/jpos/iso/ISOMsg.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 8a6276d

Please sign in to comment.