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
Replace all print statements with logs using python's builtin logging module.
import logging
make sure the output message has the correct logging level(look in the docs).
Also, make sure to name the logger object following pep 8 style.
Name the logger object as follows:
_LOG = logging.getLogger(__name__)
refer to the following docs: https://docs.python.org/3/howto/logging.html#advanced-logging-tutorial
You can also look for more advanced tutorials if you are comfortable enough: https://www.youtube.com/watch?v=9L77QExPmI0
IMPORTANT NOTE Make sure to assign yourself as the assignee if you are going to do the this issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Replace all print statements with logs using python's builtin logging module.
make sure the output message has the correct logging level(look in the docs).
Also, make sure to name the logger object following pep 8 style.
Name the logger object as follows:
refer to the following docs:
https://docs.python.org/3/howto/logging.html#advanced-logging-tutorial
You can also look for more advanced tutorials if you are comfortable enough:
https://www.youtube.com/watch?v=9L77QExPmI0
IMPORTANT NOTE
Make sure to assign yourself as the assignee if you are going to do the this issue.
The text was updated successfully, but these errors were encountered: