This commit is contained in:
Stephan Richter
2020-11-14 17:12:36 +01:00
parent 9233240d25
commit 24c19cf81a
2 changed files with 5 additions and 2 deletions

View File

@@ -643,7 +643,10 @@ public class Train extends BaseClass implements Comparable<Train> {
}
public static void startAll() {
for (Train train : list()) train.automatic();
for (Train train : list()) {
String response = train.automatic();
LOG.info(response);
}
}
private void startSimulation() {