Skip to content

Commit

Permalink
add debug message when setting the form in CoordinationPlace (#1015)
Browse files Browse the repository at this point in the history
  • Loading branch information
cfkoehler authored Dec 5, 2024
1 parent 33d667f commit 5f26666
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 5f26666

Please sign in to comment.