disable arm joint logs

This commit is contained in:
2025-10-28 16:34:39 +08:00
parent f55ce895ee
commit 2444a77ad0

View File

@@ -143,9 +143,9 @@ class CtrlGuiNode(Node):
"""Callback for /joint_states subscription: store latest joint states."""
self.last_joint_state = msg
print("Joint states received, Joint positions: ")
for i, position in enumerate(self.last_joint_state.position):
print(f" Joint {i}: {position}")
# print("Joint states received, Joint positions: ")
# for i, position in enumerate(self.last_joint_state.position):
# print(f" Joint {i}: {position}")
self.file_logger.info(f"/joint_states positions: {str(self.last_joint_state.position)}")