Skip to content

Commit

Permalink
Fixed message when parameter was found (moveit#595)
Browse files Browse the repository at this point in the history
  • Loading branch information
gstavrinos authored and tylerjw committed Aug 27, 2021
1 parent 5580ebd commit c764d9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class PlanningRequestAdapter
}
else
{
RCLCPP_INFO(logger, "Param '%s' was set to %s", full_name.c_str(), std::to_string(default_value).c_str());
RCLCPP_INFO(logger, "Param '%s' was set to %s", full_name.c_str(), std::to_string(value).c_str());
return value;
}
}
Expand Down

0 comments on commit c764d9f

Please sign in to comment.