Skip to content

Commit

Permalink
add debug message when seeting the form in CoordinationPlace
Browse files Browse the repository at this point in the history
  • Loading branch information
cfkoehler committed Nov 20, 2024
1 parent 8a64026 commit df7145a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/emissary/place/CoordinationPlace.java
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,10 @@ protected void applyOutputForm(IBaseDataObject d) {
if (pushForm) {
d.pushCurrentForm(outputForm);
} else {

if (logger.isDebugEnabled()) {
logger.debug("Object has {} number of forms in the Stack. CoordinationPlace Setting top form from {} to {}", d.currentFormSize(), d.currentForm(), outputForm);
}
d.setCurrentForm(outputForm);
}
}
Expand Down

0 comments on commit df7145a

Please sign in to comment.