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
In grants_tagger/tune_threshold.py we initialize the logger with logger = logging.getLogger(__name__) and at the same time we have a root logger in grants_tagger/__init__.py that sets the level according to the the environment variable LOGGING_LEVEL. This level is not being picked up as expected so we end up setting it again.
The text was updated successfully, but these errors were encountered:
In
grants_tagger/tune_threshold.py
we initialize the logger withlogger = logging.getLogger(__name__)
and at the same time we have a root logger ingrants_tagger/__init__.py
that sets the level according to the the environment variableLOGGING_LEVEL
. This level is not being picked up as expected so we end up setting it again.The text was updated successfully, but these errors were encountered: