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
Right now, a logging.basicConfig is defined in primrose.__init__.py. The logging should be set up in the main module, not in the primrose package init.
Additionally, primrose uses the root logger for all statements. Since we are a package, I think using module logging is more appropriate: logger = logging.getLogger(__name__)
The text was updated successfully, but these errors were encountered:
Right now, a
logging.basicConfig
is defined inprimrose.__init__.py
. The logging should be set up in the main module, not in theprimrose
package init.Additionally,
primrose
uses the root logger for all statements. Since we are a package, I think using module logging is more appropriate:logger = logging.getLogger(__name__)
The text was updated successfully, but these errors were encountered: