Skip to content

Commit

Permalink
remove long useless log message
Browse files Browse the repository at this point in the history
  • Loading branch information
jfbischoff committed Jun 15, 2021
1 parent 7676604 commit 47172b9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/org/matsim/contrib/gtfs/GtfsConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,6 @@ public void convert() {
.filter(this::filterAgencyAndType)
.collect(Collectors.toList());

// log.info(String.format("Active Trips: %d %s", activeTrips.size(), activeTrips.stream().map(trip -> trip.trip_id).collect(Collectors.toList())));

// Create one TransitLine for each GTFS-Route which has an active trip
activeTrips.stream().map(trip -> feed.routes.get(trip.route_id)).distinct().forEach(route -> {
TransitLine tl = ts.getFactory().createTransitLine(getReadableTransitLineId(route));
Expand Down

0 comments on commit 47172b9

Please sign in to comment.