summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjkoan <jkoan@users.noreply.github.com>2020-08-17 15:11:52 +0200
committerGitHub <noreply@github.com>2020-08-17 15:11:52 +0200
commit1ab6a53d57f5cb9fd0c1e62c0d24c1005ba7e652 (patch)
tree53d5942618847ceef0d79ba3a65e67163d118f9a
parent923709a9e3b85caf79ac09fc36987baf6128b65f (diff)
parent27d48440d0ee90356759f07cf4205fef0a4c7553 (diff)
downloadnavit-fix_1033.tar.gz
Merge branch 'trunk' into fix_1033fix_1033
-rw-r--r--navit/track.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/navit/track.c b/navit/track.c
index 0bc702b7e..70b89c6fc 100644
--- a/navit/track.c
+++ b/navit/track.c
@@ -637,10 +637,11 @@ void tracking_update(struct tracking *tr, struct vehicle *v, struct vehicleprofi
!vehicle_get_attr(tr->vehicle, attr_position_direction, &direction_attr, NULL) ||
!vehicle_get_attr(tr->vehicle, attr_position_coord_geo, &coord_geo, NULL) ||
!vehicle_get_attr(tr->vehicle, attr_position_time_iso8601, &time_attr, NULL)) {
- dbg(lvl_error,"failed to get position data %d %d %d",
+ dbg(lvl_error,"failed to get position data speed:%d direction:%d coord:%d time:%d",
vehicle_get_attr(tr->vehicle, attr_position_speed, &speed_attr, NULL),
vehicle_get_attr(tr->vehicle, attr_position_direction, &direction_attr, NULL),
- vehicle_get_attr(tr->vehicle, attr_position_coord_geo, &coord_geo, NULL));
+ vehicle_get_attr(tr->vehicle, attr_position_coord_geo, &coord_geo, NULL),
+ vehicle_get_attr(tr->vehicle, attr_position_time_iso8601, &time_attr, NULL));
return;
}
if (tr->tunnel_extrapolation) {