Skip to content

Commit

Permalink
Merge pull request #490 from chhil/patch-10
Browse files Browse the repository at this point in the history
Add comment to dump Bitmap in the ISOMsg dump. #488
  • Loading branch information
ar authored Jul 21, 2022
2 parents c9c9357 + 9ad7b2a commit d9904a4
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 d9904a4

Please sign in to comment.