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
When level 4 is set dont catch errors in flow-runner.py
This will make it easier to see problems
The text was updated successfully, but these errors were encountered:
#4074 Don't trap errors at log level 4
c250275
Merge pull request #4091 from AllskyTeam/4074-dont-trap-exceptions-at…
c9e76ed
…-debug-level-4 #4074 Don't trap errors at log level 4
When debug level 4 is set the flow runner will not trap any exceptions thrown in modules. This make sit far easier to find issues
To test. Set the debug level to 4 and then introduce a deliberate exception in a module. Best way is to add something like
a = 5 / 0
in the main module code to force a division by zero error.
When level 4 is set the exception will be in the allsky.log or allskyperiodic.log
When any other level is set the exception will be trapped and reported
Sorry, something went wrong.
Alex-developer
No branches or pull requests
When level 4 is set dont catch errors in flow-runner.py
This will make it easier to see problems
The text was updated successfully, but these errors were encountered: