We have a lot of print calls scattered around the main code base. This is a bit impolite as any user of the package will always get our print messages on their terminal, which in turn can obscure the user's own code.
Proposed solution:
- replace
print with logging messages.
- Expose a convenience function for users to manage the verbosity level.
We have a lot of
printcalls scattered around the main code base. This is a bit impolite as any user of the package will always get our print messages on their terminal, which in turn can obscure the user's own code.Proposed solution:
printwithloggingmessages.