Skip to content

Commit

Permalink
Including affected codespace in log-text
Browse files Browse the repository at this point in the history
  • Loading branch information
lassetyr committed Jan 25, 2024
1 parent f37d0e9 commit 860cbad
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 @@ -82,7 +82,7 @@ public void process(Siri siri) {

if (estimatedJourneyVersionFrame.getEstimatedVehicleJourneies().size() != size) {
final int removedDataCount = size - estimatedJourneyVersionFrame.getEstimatedVehicleJourneies().size();
logger.info("Removed {} ET-messages on blacklisted codespaces.", removedDataCount);
logger.info("Removed {} ET-messages on blacklisted codespaces from {}.", removedDataCount, codespace);
getMetricsService()
.registerDataMapping(
SiriDataType.ESTIMATED_TIMETABLE,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void process(Siri siri) {

if (estimatedJourneyVersionFrame.getEstimatedVehicleJourneies().size() != size) {
final int removedDataCount = size - estimatedJourneyVersionFrame.getEstimatedVehicleJourneies().size();
logger.info("Removed {} ET-messages NOT on whitelisted codespaces.", removedDataCount);
logger.info("Removed {} ET-messages NOT on whitelisted codespaces from {}.", removedDataCount, codespace);
getMetricsService()
.registerDataMapping(
SiriDataType.ESTIMATED_TIMETABLE,
Expand Down

0 comments on commit 860cbad

Please sign in to comment.