Skip to content

Commit

Permalink
Merge branch 'feature/easy_full_control' of ssh://github.com/open-rmf…
Browse files Browse the repository at this point in the history
…/rmf_ros2 into feature/easy_full_control
  • Loading branch information
mxgrey committed Aug 18, 2023
2 parents 3d00c33 + bca14cf commit a69ec3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rmf_traffic_ros2/src/rmf_traffic_ros2/blockade/Node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ std::shared_ptr<rclcpp::Node> make_node(
{
if (const auto n = w.lock())
{
RCLCPP_INFO(n->get_logger(), msg.c_str());
RCLCPP_INFO(n->get_logger(), "%s", msg.c_str());
}
});

Expand All @@ -279,7 +279,7 @@ std::shared_ptr<rclcpp::Node> make_node(
{
if (const auto n = w.lock())
{
RCLCPP_DEBUG(n->get_logger(), msg.c_str());
RCLCPP_DEBUG(n->get_logger(), "%s", msg.c_str());
}
});

Expand Down

0 comments on commit a69ec3d

Please sign in to comment.