We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to receive error message + traceback on exception? Currently the pyrasite silently exits
The text was updated successfully, but these errors were encountered:
Silently exits? It doesn't, it just prints the error on the target's stderr, not pyrasite's stderr.
You can use try... except in Python to redirect the error message.
try... except
try: 1/0 except: import traceback traceback.print_exc(file=open("/tmp/error", "w"))
Sorry, something went wrong.
No branches or pull requests
Is it possible to receive error message + traceback on exception? Currently the pyrasite silently exits
The text was updated successfully, but these errors were encountered: