Skip to content

Commit

Permalink
Merge pull request #6278 from leonardehrenfried/fix-gtfs-rt-logging
Browse files Browse the repository at this point in the history
Improve wording of GTFS-RT failure messages
  • Loading branch information
leonardehrenfried authored Nov 26, 2024
2 parents 3a4753e + 106f8ec commit bc3147f
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 @@ -88,7 +88,7 @@ protected void runPolling() {

lastTimestamp = feedTimestamp;
} catch (Exception e) {
LOG.error("Error reading gtfs-realtime feed from " + url, e);
LOG.error("Failed to process GTFS-RT Alerts feed from {}", url, e);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public List<TripUpdate> getUpdates() {
if (feedEntity.hasTripUpdate()) updates.add(feedEntity.getTripUpdate());
}
} catch (Exception e) {
LOG.error("Failed to parse GTFS-RT feed from {}", url, e);
LOG.error("Failed to process GTFS-RT TripUpdates feed from {}", url, e);
}
return updates;
}
Expand Down

0 comments on commit bc3147f

Please sign in to comment.