Skip to content

Commit 1795826

Browse files
committed
Removed comments
Signed-off-by: Aaron Chong <aaronchongth@gmail.com>
1 parent 5d3daf8 commit 1795826

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

nexus_capabilities/src/capabilities/rmf_request.cpp

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -273,14 +273,6 @@ BT::NodeStatus WaitForAmr::onStart()
273273
this->_rmf_task_id = *rmf_task_id;
274274
this->_amr_ready = false;
275275

276-
RCLCPP_INFO(
277-
this->_node->get_logger(),
278-
"CHECKING: workcell [%s], rmf_task_id [%s], amr_ready: [%s]",
279-
this->_workcell.c_str(),
280-
this->_rmf_task_id.c_str(),
281-
this->_amr_ready ? "amr ready" : "amr not ready"
282-
);
283-
284276
this->_dispenser_request_sub = this->_node->create_subscription<DispenserRequest>("/dispenser_requests", 10,
285277
[&](DispenserRequest::UniquePtr msg)
286278
{
@@ -294,9 +286,6 @@ void WaitForAmr::dispenser_request_cb(const DispenserRequest& msg)
294286
if (msg.request_guid == this->_rmf_task_id &&
295287
msg.target_guid == this->_workcell)
296288
{
297-
RCLCPP_INFO(
298-
this->_node->get_logger(), "workcell %s: got dispenser request with target guid: %s", this->_workcell.c_str(), msg.target_guid.c_str()
299-
);
300289
this->_amr_ready = true;
301290
}
302291
}

0 commit comments

Comments
 (0)