Skip to content

Commit 0cc8970

Browse files
Clean up logging
1 parent 01ccd5c commit 0cc8970

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

ROS_Packages/ros_tcp_endpoint/src/ros_tcp_endpoint/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ def run(self):
216216
pass
217217
elif destination.startswith("__"):
218218
# handle a system command, such as registering new topics
219-
rospy.loginfo(destination)
220219
self.tcp_server.handle_syscommand(destination, data)
221220
elif destination in self.tcp_server.source_destination_dict:
222221
ros_communicator = self.tcp_server.source_destination_dict[destination]

ROS_Packages/ros_tcp_endpoint/src/ros_tcp_endpoint/tcp_sender.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ def send_unity_service_response(self, srv_id, data):
116116

117117
def send_topic_list(self):
118118
if self.queue is not None:
119-
rospy.loginfo("Sending topic list")
120119
topic_list = SysCommand_TopicsResponse()
121120
topics_and_types = rospy.get_published_topics()
122121
topic_list.topics = [item[0] for item in topics_and_types]

0 commit comments

Comments
 (0)