Skip to content

Commit

Permalink
Merge branch 'comms_bridge' of https://github.com/marinagmoreira/astr…
Browse files Browse the repository at this point in the history
…obee into comms_bridge
  • Loading branch information
marinagmoreira committed Nov 22, 2023
2 parents b9e93fa + 2e99efc commit 3897858
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ class GenericRapidSub {
}

void operator() (T const* data) {
#include "comms_bridge/util.h"
ROS_INFO("Received data for topic %s\n", subscribe_topic_.c_str());
ROS_ERROR("Received data for topic %s\n", subscribe_topic_.c_str());
ros_pub_->ConvertData(data);
}

Expand Down
4 changes: 2 additions & 2 deletions communications/comms_bridge/src/generic_rapid_msg_ros_pub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void GenericRapidMsgRosPub::ConvertData(

const std::string output_topic = data->outputTopic;

ROS_INFO("Comms Bridge Nodelet: Received advertisement message for topic %s\n",
ROS_ERROR("Comms Bridge Nodelet: Received advertisement message for topic %s\n",
output_topic.c_str());

AdvertisementInfo ad_info;
Expand All @@ -62,7 +62,7 @@ void GenericRapidMsgRosPub::ConvertData(

const std::string output_topic = data->outputTopic;

ROS_INFO("Comms Bridge Nodelet: Received content message for topic %s\n",
ROS_ERROR("Comms Bridge Nodelet: Received content message for topic %s\n",
output_topic.c_str());

std::map<std::string, RelayTopicInfo>::iterator iter = m_relay_topics_.find(output_topic);
Expand Down

0 comments on commit 3897858

Please sign in to comment.