Skip to content

Commit

Permalink
update log
Browse files Browse the repository at this point in the history
  • Loading branch information
MishkaMN committed Sep 18, 2024
1 parent 6f3377a commit 88bdad2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ public void onVehicleUpdates(VehicleUpdates vui) {
for (VehicleData veh : vui.getUpdated()) {
if (managedInstances.containsKey(veh.getName())) {
managedInstances.get(veh.getName()).setLocation(veh.getPosition());
log.warn("On vehicle updates in carma instance manager, vehicle position, veh_name:{}, position {}", veh.getName(), veh.getPosition().toString());

log.warn("On vehicle updates in carma instance manager, vehicle position, veh_name:{}, position {}; projected position: {}", veh.getName(), veh.getPosition().toString(), veh.getProjectedPosition().toString());
}
}
}
Expand Down

0 comments on commit 88bdad2

Please sign in to comment.