Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
6d50a261
Commit
6d50a261
authored
Jul 07, 2015
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow full exception tracebacks to be displayed with increased verbosity
parent
614c626e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
+9
-1
bin/ansible
+9
-1
No files found.
bin/ansible
View file @
6d50a261
...
...
@@ -34,6 +34,7 @@ except Exception:
import
os
import
sys
import
traceback
from
ansible.errors
import
AnsibleError
,
AnsibleOptionsError
,
AnsibleParserError
from
ansible.utils.display
import
Display
...
...
@@ -41,9 +42,11 @@ from ansible.utils.display import Display
########################################
### OUTPUT OF LAST RESORT ###
class
LastResort
(
object
):
def
error
(
self
,
msg
):
def
display
(
self
,
msg
):
print
(
msg
,
file
=
sys
.
stderr
)
error
=
display
########################################
if
__name__
==
'__main__'
:
...
...
@@ -96,5 +99,10 @@ if __name__ == '__main__':
display
.
error
(
"User interrupted execution"
)
sys
.
exit
(
99
)
except
Exception
as
e
:
have_cli_options
=
cli
is
not
None
and
cli
.
options
is
not
None
display
.
error
(
"Unexpected Exception:
%
s"
%
str
(
e
))
if
not
have_cli_options
or
have_cli_options
and
cli
.
options
.
verbosity
>
2
:
display
.
display
(
"the full traceback was:
\n\n
%
s"
%
traceback
.
format_exc
())
else
:
display
.
display
(
"to see the full traceback, use -vvv"
)
sys
.
exit
(
250
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment