Skip to content

Commit 2de89e5

Browse files
committed
Reduce log verbosity in GBFS station mapper for GBFS v2
1 parent f5261c5 commit 2de89e5

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

application/src/main/java/org/opentripplanner/updater/vehicle_rental/datasources/gbfs/v2/GbfsStationInformationMapper.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,10 @@ public VehicleRentalStation mapStationInformation(GBFSStation station) {
4343
station.getLon() == null ||
4444
station.getLat() == null
4545
) {
46-
LOG.info(
47-
String.format(
48-
"GBFS station for %s system has issues with required fields: \n%s",
49-
system.systemId(),
50-
station
51-
)
46+
LOG.debug(
47+
"GBFS station for {} system has issues with required fields: \n{}",
48+
system.systemId(),
49+
station
5250
);
5351
return null;
5452
}

0 commit comments

Comments
 (0)