Skip to content

Commit

Permalink
Update controller_interface/src/controller_interface_base.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Bence Magyar <[email protected]>
  • Loading branch information
saikishor and bmagyar authored Oct 17, 2024
1 parent ebb69c5 commit e38f567
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions controller_interface/src/controller_interface_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,7 @@ const rclcpp_lifecycle::State & ControllerInterfaceBase::configure()
{
const unsigned int thread_priority =
static_cast<unsigned int>(get_node()->get_parameter("thread_priority").as_int());
RCLCPP_INFO_STREAM(
get_node()->get_logger(),
"Starting async handler with scheduler priority: " << thread_priority);
RCLCPP_INFO(get_node()->get_logger(), "Starting async handler with scheduler priority: %d", thread_priority);
async_handler_ = std::make_unique<realtime_tools::AsyncFunctionHandler<return_type>>();
async_handler_->init(
std::bind(
Expand Down

0 comments on commit e38f567

Please sign in to comment.