Skip to content

Commit

Permalink
Merge pull request matsim-org#3386 from matsim-org/kmt_reduceLoggingL…
Browse files Browse the repository at this point in the history
…evel

Freight: Reduce level of some log entries
  • Loading branch information
kt86 authored Jul 29, 2024
2 parents 84ee758 + 4fa6530 commit e1783db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ void scoreSelectedPlan() {
}
scoringFunction.finish();
final double score = scoringFunction.getScore();
log.warn("score={}", score);
log.debug("score of carrier {} = {}", carrier.getId(), score);
carrier.getSelectedPlan().setScore( score );
}
void handleEvent(Event event, Id<Person> driverId) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public final class FreightAgentSource implements AgentSource {
vehicle = CarriersUtils.getVehicle( freightDriverPlan );
}

log.warn("inserting vehicleId={} into mobsim.", vehicle.getId());
log.debug("inserting vehicleId={} into mobsim.", vehicle.getId());
qsim.addParkedVehicle( new QVehicleImpl( vehicle ), agent.getCurrentLinkId() );
// yyyyyy should rather use QVehicleFactory. kai, nov'18

Expand Down

0 comments on commit e1783db

Please sign in to comment.