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
@bw-matthew noticed that bwproject.py seems to override the logging level to: logger.setLevel(logging.DEBUG). This doesn't seem right
logger.setLevel(logging.DEBUG)
The text was updated successfully, but these errors were encountered:
It also configures the logging which may be inappropriate. You can use basicConfig to apply logging settings if they have not already been applied:
This function does nothing if the root logger already has handlers configured
The following code would be equivalent while respecting the configuration set by the user:
logger.basicConfig(format="%(asctime)s %(levelname)s: %(message)s", datefmt="%H:%M:%S", level=logging.DEBUG)
Although I would omit the level argument.
Sorry, something went wrong.
No branches or pull requests
@bw-matthew noticed that bwproject.py seems to override the logging level to:
logger.setLevel(logging.DEBUG)
. This doesn't seem rightThe text was updated successfully, but these errors were encountered: