report extra info in verbose and if needed

This commit is contained in:
Brian Coca 2017-10-02 09:59:41 -04:00 committed by Brian Coca
commit 9c6d7ddeb5
2 changed files with 5 additions and 2 deletions

View file

@ -67,8 +67,6 @@ class AnsibleError(Exception):
self.message = '%s' % to_native(message)
if orig_exc:
self.orig_exc = orig_exc
self.message += '\nexception type: %s' % to_native(type(orig_exc))
self.message += '\nexception: %s' % to_native(orig_exc)
self.tb = ''.join(traceback.format_tb(sys.exc_info()[2]))