Skip to content

Commit

Permalink
Fixed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Nov 22, 2023
1 parent d894d2f commit e53bf76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ ${edges.map { it.visualize() }.reduce { a, b -> "$a\n$b" }}
println("Caught exception: $e")
val edge: Edge? = currentNode.outEdges.find { it.trigger(e) }
if (edge != null) {
println("Handling exception as $edge")
println("Handling exception as ${edge.trigger}")
currentNode = edge.target
} else {
println("Could not handle trigger $e (Available triggers: ${
Expand Down

0 comments on commit e53bf76

Please sign in to comment.