Skip to content

Commit

Permalink
Fixed error output.
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrowne15 committed Jan 13, 2024
1 parent 49d68fb commit 2fb4fc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions communications/comms_bridge/src/generic_rapid_msg_ros_pub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ void GenericRapidMsgRosPub::ConvertData(
ROS_INFO_STREAM("ad_info msgDefinition: " << data->msgDefinition);

if (!advertiseTopic(output_topic, ad_info)) {
ROS_ERROR("Comms Bridge Nodelet: Error advertising topic: %s\n",
output_topic.c_str());
ROS_INFO("Comms Bridge Nodelet: Received more than one advertisement info message for topic: %s\n",
output_topic.c_str());
}
}

Expand All @@ -75,7 +75,7 @@ void GenericRapidMsgRosPub::ConvertData(
topic_info.ad_info.md5_sum = data->md5Sum;
iter = m_relay_topics_.emplace(output_topic, topic_info).first;

// TODO(Katie) Do we request advertisement info
// TODO(Katie) Working on this in another branch
// requestAdvertisementInfo(output_topic);
}

Expand Down

0 comments on commit 2fb4fc0

Please sign in to comment.