Skip to content

Commit

Permalink
Fixed message when parameter was found
Browse files Browse the repository at this point in the history
  • Loading branch information
gstavrinos committed Aug 6, 2021
1 parent 00b8c17 commit 9d49da5
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 9d49da5

Please sign in to comment.