Skip to content

Commit

Permalink
Clear up logging for exiting processes
Browse files Browse the repository at this point in the history
  • Loading branch information
LoyVanBeek committed Nov 5, 2020
1 parent 0b2dc26 commit d2cd790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flexbe_testing/src/flexbe_testing/test_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def __init__(self, callback):
self._callback = callback

def process_died(self, process_name, exit_code):
rospy.loginfo("{}, {}".format(process_name, exit_code))
rospy.loginfo("Process {} exited with {}".format(process_name, exit_code))
self._callback(process_name, exit_code)


Expand Down

0 comments on commit d2cd790

Please sign in to comment.