Skip to content

Commit 29fb9e9

Browse files
committed
Remove logging statements from perform_switch method
1 parent 3c86dd6 commit 29fb9e9

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

ur_robot_driver/src/hardware_interface.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1398,7 +1398,6 @@ hardware_interface::return_type URPositionHardwareInterface::perform_command_mod
13981398
}
13991399
if (stop_modes_[0].size() != 0 && std::find(stop_modes_[0].begin(), stop_modes_[0].end(),
14001400
StoppingInterface::STOP_PASSTHROUGH) != stop_modes_[0].end()) {
1401-
RCLCPP_WARN(get_logger(), "Stopping passthrough trajectory controller.");
14021401
passthrough_trajectory_controller_running_ = false;
14031402
passthrough_trajectory_abort_ = 1.0;
14041403
trajectory_joint_positions_.clear();
@@ -1417,8 +1416,6 @@ hardware_interface::return_type URPositionHardwareInterface::perform_command_mod
14171416
resetMoprimCmdInterfaces();
14181417
current_moprim_execution_status_ = MoprimExecutionState::IDLE;
14191418
ready_for_new_moprim_ = false;
1420-
1421-
RCLCPP_INFO(get_logger(), "Motion primitives mode stopped.");
14221419
}
14231420
if (stop_modes_.size() != 0 && std::find(stop_modes_[0].begin(), stop_modes_[0].end(),
14241421
StoppingInterface::STOP_TOOL_CONTACT) != stop_modes_[0].end()) {

0 commit comments

Comments
 (0)