Skip to content

Commit

Permalink
only put traceback in debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
wjwwood committed Aug 30, 2018
1 parent f077ab6 commit 4dbd9bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launch/launch/launch_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def _on_sigquit(signum, frame):
_logger.error('asyncio run loop was canceled')
except Exception as exc:
msg = 'Caught exception in launch (see debug for traceback): {}'.format(exc)
_logger.error(traceback.format_exc())
_logger.debug(traceback.format_exc())
_logger.error(msg)
self._shutdown(reason=msg, due_to_sigint=False)
# restart run loop to let it shutdown properly
Expand Down

0 comments on commit 4dbd9bb

Please sign in to comment.