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
Hi @yakutovicha - Consider using a tool like loguru as it is very easy to start replacing prints with more meaningful (and configurable) logging:
fromloguruimportloggerlogger.trace("The user will not see this, but maybe it is useful when doing a deep dive...")
logger.warning("Something does not look quite right...")
try:
1/0except:
logger.exception("Oh dear") # stack trace recorded
No description provided.
The text was updated successfully, but these errors were encountered: