Skip to content

Commit

Permalink
Fixes format
Browse files Browse the repository at this point in the history
Signed-off-by: Franco Cipollone <franco.c@ekumenlabs.com>
  • Loading branch information
francocipollone committed Sep 14, 2023
1 parent 2abcc4e commit e1a82c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/maliput_dragway/road_geometry.cc
Expand Up @@ -100,8 +100,9 @@ bool RoadGeometry::IsInertialPositionOnDragway(const api::InertialPosition& iner
inertial_pos.x() > length + +inertial_to_backend_frame_translation_.x() || inertial_pos.y() > max_y ||
inertial_pos.y() < min_y) {
maliput::log()->trace(
"dragway::RoadGeometry::IsInertialPositionOnDragway(): The provided inertial_pos "
"(",inertial_pos.x(),", ",inertial_pos.y(),") is not on the dragway (length = ",length,", min_y = ",min_y,", max_y = ",max_y,").");
"dragway::RoadGeometry::IsInertialPositionOnDragway(): The provided inertial_pos (",
inertial_pos.x(), ", ", inertial_pos.y(), ") is not on the dragway (length = ", length, ", min_y = ", min_y,
", max_y = ", max_y, ").");
return false;
} else {
return true;
Expand Down

0 comments on commit e1a82c4

Please sign in to comment.