Skip to content

Commit cbfb277

Browse files
authored
Remove keyboard interrupt prints
1 parent 0709f71 commit cbfb277

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bitbots_misc/bitbots_teleop/bitbots_teleop/joy_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,6 @@ def main():
247247
try:
248248
executor.spin()
249249
except KeyboardInterrupt:
250-
node.get_logger().info("Joy node stopped by user")
250+
pass
251251

252252
node.destroy_node()

bitbots_navigation/bitbots_path_planning/bitbots_path_planning/path_planning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ def main(args=None):
8080
try:
8181
executor.spin()
8282
except KeyboardInterrupt:
83-
node.get_logger().info("Path planning node stopped by user")
83+
pass
8484

8585
node.destroy_node()

bitbots_simulation/bitbots_robocup_api/bitbots_robocup_api/command_proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ def main(args=None):
4848
try:
4949
executor.spin()
5050
except KeyboardInterrupt:
51-
command_proxy.get_logger().info("Shutting down command proxy due to keyboard interrupt.")
51+
pass
5252
command_proxy.destroy_node()

bitbots_team_communication/bitbots_team_communication/bitbots_team_communication/bitbots_team_communication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def spin(self):
7474
try:
7575
executor.spin()
7676
except KeyboardInterrupt:
77-
self.logger.info("Shutting down team communication node.")
77+
pass
7878

7979
def run_spin_in_thread(self):
8080
# Necessary in ROS2, else we are forever stuck receiving messages

0 commit comments

Comments
 (0)