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
Your logging should declare a logger name, otherwise it will clash with other logging configurations used by your consumers and not display any information in the console,
e.g. init.py
line 17:
change
log = logging.getLogger() to log = logging.getLogger(name)
The text was updated successfully, but these errors were encountered:
Your logging should declare a logger name, otherwise it will clash with other logging configurations used by your consumers and not display any information in the console,
e.g.
init.py
line 17:
change
log = logging.getLogger() to log = logging.getLogger(name)
The text was updated successfully, but these errors were encountered: