Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #278 from matsim-vsp/reduceLoggingLevel
Browse files Browse the repository at this point in the history
Reduce logging level
  • Loading branch information
kt86 authored Jul 30, 2024
2 parents 3f83f6d + 6203d53 commit 97aa6e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/matsim/freight/logistics/LSPModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -234,11 +234,11 @@ public static final class DumpLSPPlans implements BeforeMobsimListener {
public void notifyBeforeMobsim(BeforeMobsimEvent event) {
LSPs lsps = LSPUtils.getLSPs(scenario);
for (LSP lsp : lsps.getLSPs().values()) {
log.warn("Dumping plan(s) of [LSP={}] ; [No of plans={}]", lsp.getId(), lsp.getPlans().size());
log.info("Dumping plan(s) of [LSP={}] ; [No of plans={}]", lsp.getId(), lsp.getPlans().size());
for (LSPPlan plan : lsp.getPlans()) {
log.warn("[LSPPlan: {}]", plan.toString());
log.info("[LSPPlan: {}]", plan.toString());
}
log.warn("Plan(s) of [LSP={}] dumped.", lsp.getId());
log.info("Plan(s) of [LSP={}] dumped.", lsp.getId());
}
}
}
Expand Down

0 comments on commit 97aa6e6

Please sign in to comment.