selfcheck.py: print reports when there was exception in check

This commit is contained in:
Oleg Kalachev
2022-11-03 06:56:07 +06:00
parent 4f00960db3
commit dc5da00abd

View File

@@ -78,7 +78,6 @@ def check(name):
except Exception as e:
traceback.print_exc()
rospy.logerr('%s: exception occurred', name)
return
with reports_lock:
for report in thread_local.reports:
if 'failure' in report: