Skip to content

Commit

Permalink
ref: changed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Uhutown committed Oct 20, 2024
1 parent 4c4008a commit 865ca1b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,10 @@ protected void setSignals() {
protected void setSignals(final SignalStateInfo lastSignal) {
if (isExecutingSignalSet || tile == null)
return;
System.out.println("Changeing signals for " + this + "! Call:");
for (final StackTraceElement el : Thread.currentThread().getStackTrace()) {
System.out.println(" " + el);
}
final World world = tile.getWorld();
final StateInfo identifier = new StateInfo(world, tile.getPos());
final MainSignalIdentifier startSignal = data.getStartSignal();
Expand Down

0 comments on commit 865ca1b

Please sign in to comment.