Skip to content

Commit

Permalink
fix: the print of the information in control node was in wrong order (#…
Browse files Browse the repository at this point in the history
…1726)

(cherry picked from commit caa242f)
  • Loading branch information
mamueluth authored and mergify[bot] committed Aug 28, 2024
1 parent 8e33b4e commit a60fce7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions controller_manager/src/ros2_control_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,20 @@ int main(int argc, char ** argv)
"for details on how to enable realtime scheduling.",
errno, strerror(errno));
}
else
{
RCLCPP_INFO(
cm->get_logger(), "Successful set up FIFO RT scheduling policy with priority %i.",
kSchedPriority);
}
}
else
{
RCLCPP_INFO(
cm->get_logger(), "Successful set up FIFO RT scheduling policy with priority %i.",
kSchedPriority);
RCLCPP_WARN(
cm->get_logger(),
"No real-time kernel detected on this system. See "
"[https://control.ros.org/master/doc/ros2_control/controller_manager/doc/userdoc.html] "
"for details on how to enable realtime scheduling.");
}

// for calculating sleep time
Expand Down

0 comments on commit a60fce7

Please sign in to comment.