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
There are a couple of places in the code where print is used to print warnings. The logging module is in the standard library and allows for more fine grained control of user feedback. I recommend all the parts where warnings are printed be replaced by logging.warn(). Most user output which is not nicely formatted (just messages) can be handled this way.
The text was updated successfully, but these errors were encountered:
There are a couple of places in the code where
print
is used to print warnings. Thelogging
module is in the standard library and allows for more fine grained control of user feedback. I recommend all the parts where warnings are printed be replaced bylogging.warn()
. Most user output which is not nicely formatted (just messages) can be handled this way.The text was updated successfully, but these errors were encountered: