Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion controller_manager/src/controller_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1706,7 +1706,8 @@ controller_interface::return_type ControllerManager::configure_controller(
RCLCPP_ERROR(
get_logger(),
"Controller '%s' is chainable, but does not export any state or reference interfaces. "
"Did you override the on_export_method() correctly?",
"Did you override the on_export_state_interfaces_list() or "
"on_export_reference_interfaces_list() methods correctly?",
controller_name.c_str());
return controller_interface::return_type::ERROR;
}
Expand Down
Loading