Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
LeroyR committed Jun 6, 2024
1 parent 2e5e0f2 commit 2ceb518
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,12 @@ private void actionCheck(List<Action> actions) {
public void onEntry(final TransitionTarget entered) {

logger.debug("#OnEntry: " + entered.getId());
//logger.debug(this.);
logger.trace("Current states:");
if (logger.isTraceEnabled()) for(Object s : scxmlExecutor.getCurrentStatus().getStates()) {
State state = (State) s;
logger.trace("- " + state.getId());
}
logger.debug(this.scxmlExecutor.getCurrentStatus().toString());
actionCheck(entered.getOnEntry().getActions());

while (PAUSE && running) {
Expand Down

0 comments on commit 2ceb518

Please sign in to comment.