From ccdf0f239484c1adfd01cbd70a9d1687b7afa375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20G=C3=BCndling?= Date: Sat, 2 Dec 2023 15:51:57 +0100 Subject: [PATCH] gtfs rt unsupported messages: more debug --- src/rt/gtfsrt_update.cc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/rt/gtfsrt_update.cc b/src/rt/gtfsrt_update.cc index 5ef0e696..e6ce2035 100644 --- a/src/rt/gtfsrt_update.cc +++ b/src/rt/gtfsrt_update.cc @@ -246,27 +246,45 @@ statistics gtfsrt_update_msg(timetable const& tt, std::chrono::time_point_cast(message_time); for (auto const& entity : msg.entity()) { if (entity.is_deleted()) { + log(log_lvl::error, "rt.gtfs.unsupported", + "unsupported deleted (tag={}, id={})", tag, entity.id()); ++stats.unsupported_deleted_; continue; } else if (entity.has_alert()) { + log(log_lvl::error, "rt.gtfs.unsupported", + "unsupported alert (tag={}, id={})", tag, entity.id()); ++stats.unsupported_alert_; continue; } else if (entity.has_vehicle()) { + log(log_lvl::error, "rt.gtfs.unsupported", + "unsupported vehicle (tag={}, id={})", tag, entity.id()); ++stats.unsupported_vehicle_; continue; } else if (!entity.has_trip_update()) { + log(log_lvl::error, "rt.gtfs.unsupported", + "unsupported no trip update (tag={}, id={})", tag, entity.id()); ++stats.no_trip_update_; continue; } else if (!entity.trip_update().has_trip()) { + log(log_lvl::error, "rt.gtfs.unsupported", + "unsupported no trip in trip update (tag={}, id={})", tag, + entity.id()); ++stats.trip_update_without_trip_; continue; } else if (!entity.trip_update().trip().has_trip_id()) { + log(log_lvl::error, "rt.gtfs.unsupported", + "unsupported trip without trip_id (tag={}, id={})", tag, entity.id()); ++stats.unsupported_no_trip_id_; continue; } else if (entity.trip_update().trip().schedule_relationship() != gtfsrt::TripDescriptor_ScheduleRelationship_SCHEDULED && entity.trip_update().trip().schedule_relationship() != gtfsrt::TripDescriptor_ScheduleRelationship_CANCELED) { + log(log_lvl::error, "rt.gtfs.unsupported", + "unsupported schedule relationship {} (tag={}, id={})", + TripDescriptor_ScheduleRelationship_Name( + entity.trip_update().trip().schedule_relationship()), + tag, entity.id()); ++stats.unsupported_schedule_relationship_; continue; }