Skip to content

Commit

Permalink
[WIP] make quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
tongtybj committed Feb 21, 2024
1 parent dae338b commit e0c0aba
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ void DynamixelController::writeCallback(const ros::TimerEvent&)
point_cnt = 0;
position_cnt = 0;

ROS_INFO("Complete Execution");
// ROS_INFO("Complete Execution");
}
}
}
Expand Down Expand Up @@ -697,7 +697,7 @@ void DynamixelController::trajectoryMsgCallback(const trajectory_msgs::JointTraj

for (auto const& joint:msg->joint_names)
{
ROS_INFO("'%s' is ready to move", joint.c_str());
// ROS_INFO("'%s' is ready to move", joint.c_str());

jnt_tra_msg_->joint_names.push_back(joint);
id_cnt++;
Expand Down Expand Up @@ -774,7 +774,7 @@ void DynamixelController::trajectoryMsgCallback(const trajectory_msgs::JointTraj
cnt++;
}
}
ROS_INFO("Succeeded to get joint trajectory!");
// ROS_INFO("Succeeded to get joint trajectory!");
is_moving_ = true;
}
else
Expand Down

0 comments on commit e0c0aba

Please sign in to comment.