Skip to content

Commit

Permalink
Removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
nicktrem committed May 17, 2024
1 parent 621ce36 commit b98edec
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions robot_log_visualizer/file_reader/signal_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,8 @@ def __populate_numerical_data(self, file_object):
if not isinstance(value, h5py._hl.group.Group):
continue
if key == "#refs#":
print("Skipping for refs")
continue
if key == "log":
print("Skipping for log")
continue
if "data" in value.keys():
data[key] = {}
Expand Down
1 change: 0 additions & 1 deletion robot_log_visualizer/ui/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,6 @@ def establish_connection(self, root):
def connect_realtime_logger(self):
self.realtimeConnectionEnabled = True
self.signal_provider.root_name = "robot_realtime"
print("Now connecting for real-time logging")

# Do initial connection to populate the necessary data
if not self.signal_provider.maintain_connection():
Expand Down

0 comments on commit b98edec

Please sign in to comment.