Skip to content

Commit

Permalink
added warning on cancellation. refs #10447
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Aug 29, 2024
1 parent 1b365cd commit f6c2e7f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/microsim/devices/MSDevice_Taxi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,10 @@ MSDevice_Taxi::cancelCurrentCustomers() {
//}
}
}
if (!customersToBeRemoved.empty()) {
WRITE_WARNINGF(TL("Taxi '%' aborts waiting for customers: % at time=%."),
myHolder.getID(), toString(customersToBeRemoved), time2string(SIMSTEP));
}
for (auto t : customersToBeRemoved) {
cancelCustomer(t);
}
Expand Down

0 comments on commit f6c2e7f

Please sign in to comment.