You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
Is your feature request related to a problem? Please describe.
There are many print statements in the codebase that may not be relevant to users.
Add verbose option to allow the user to choose if they want the details to be printed or not.
Describe the solution you'd like
Use logging library and replace all print statements with log.
Pass in -v or --verbose flag to enable info logging
Describe alternatives you've considered
print statement wrapped around if statement for verbose flag also is okay as a first step.
Eventually, I think it would be beneficial to use logging
Additional context
I believe this was mentioned by @tzstoyanov in the past.
Feel free to add on to the issue if you have a solution you like to propose.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
There are many print statements in the codebase that may not be relevant to users.
Add verbose option to allow the user to choose if they want the details to be printed or not.
Describe the solution you'd like
Use
logging
library and replace all print statements with log.Pass in
-v
or--verbose
flag to enable info loggingDescribe alternatives you've considered
print statement wrapped around if statement for verbose flag also is okay as a first step.
Eventually, I think it would be beneficial to use
logging
Additional context
I believe this was mentioned by @tzstoyanov in the past.
Feel free to add on to the issue if you have a solution you like to propose.
The text was updated successfully, but these errors were encountered: