Skip to content

Commit

Permalink
Fix minor logging error (#318)
Browse files Browse the repository at this point in the history
Noticed a teeny error in logging. Gets rid of one clang warning.

Signed-off-by: Arjo Chakravarty <[email protected]>
  • Loading branch information
arjo129 authored Jan 16, 2024
1 parent f6b9d79 commit efccf11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rmf_fleet_adapter/src/rmf_fleet_adapter/events/GoToPlace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,8 @@ std::optional<rmf_traffic::agv::Plan::Goal> GoToPlace::Active::_choose_goal(
RCLCPP_ERROR(
_context->node()->get_logger(),
"No path found for robot [%s] to waypoint [%lu]",
wp_idx,
_context->requester_id().c_str());
_context->requester_id().c_str(),
wp_idx);
}
}

Expand Down

0 comments on commit efccf11

Please sign in to comment.