Skip to content

Commit 4adb592

Browse files
committed
Merge branch 'master' of github.com:wittenator/ros2_controllers
2 parents 48a66cc + e0a58db commit 4adb592

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

steering_controllers_library/src/steering_controllers_library.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ controller_interface::CallbackReturn SteeringControllersLibrary::on_configure(
124124
{
125125
RCLCPP_ERROR(
126126
get_node()->get_logger(),
127-
"Steering configuration requires exactly two traction joints, but %zu were provided",
127+
"Ackermann configuration requires exactly two traction joints, but %zu were provided",
128128
params_.traction_joints_names.size());
129129
return controller_interface::CallbackReturn::ERROR;
130130
}
@@ -158,7 +158,7 @@ controller_interface::CallbackReturn SteeringControllersLibrary::on_configure(
158158
{
159159
RCLCPP_ERROR(
160160
get_node()->get_logger(),
161-
"Steering configuration requires exactly two steering joints, but %zu were provided",
161+
"Ackermann configuration requires exactly two steering joints, but %zu were provided",
162162
params_.steering_joints_names.size());
163163
return controller_interface::CallbackReturn::ERROR;
164164
}
@@ -199,7 +199,7 @@ controller_interface::CallbackReturn SteeringControllersLibrary::on_configure(
199199
{
200200
RCLCPP_ERROR(
201201
get_node()->get_logger(),
202-
"Steering configuration requires exactly two traction joints, but %zu state interface "
202+
"Ackermann configuration requires exactly two traction joints, but %zu state interface "
203203
"names were provided",
204204
params_.traction_joints_state_names.size());
205205
return controller_interface::CallbackReturn::ERROR;
@@ -244,7 +244,7 @@ controller_interface::CallbackReturn SteeringControllersLibrary::on_configure(
244244
{
245245
RCLCPP_ERROR(
246246
get_node()->get_logger(),
247-
"Steering configuration requires exactly two steering joints, but %zu state interface "
247+
"Ackermann configuration requires exactly two steering joints, but %zu state interface "
248248
"names were provided",
249249
params_.steering_joints_state_names.size());
250250
return controller_interface::CallbackReturn::ERROR;

0 commit comments

Comments
 (0)