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
After #128 was merged in, the setup and teardown scripts are no longer showing log statements in the console:
setup
teardown
This has to do with logger hierarchy. In #116, we were setting the log level and handler for the root logger. The intent in #128 was to:
root
I thought configuring directly on the app.logger instance would be equivalent to our previous setup, but I see now that's not true.
app.logger
This bug points out that we should revisit the organization of our scripts and where they get their Logger. This might have some overlap with #131.
Logger
https://docs.python.org/3/howto/logging.html#advanced-logging-tutorial
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
After #128 was merged in, the
setup
andteardown
scripts are no longer showing log statements in the console:Additional context
This has to do with logger hierarchy. In #116, we were setting the log level and handler for the
root
logger. The intent in #128 was to:I thought configuring directly on the
app.logger
instance would be equivalent to our previous setup, but I see now that's not true.This bug points out that we should revisit the organization of our scripts and where they get their
Logger
. This might have some overlap with #131.Resources
https://docs.python.org/3/howto/logging.html#advanced-logging-tutorial
The text was updated successfully, but these errors were encountered: