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
Customization of logging.basicConfig is a common feature found in many python scripts. For example, a user may want to set their own log filename, or output stream, change logging level, etc.
However, the first instance of logging.basicConfig (in this case by fms_mo) takes precedence. This initial configuration can be overridden by passing force=True to the subsequent calls of logging.basicConfig but this is not widely known. The resulting logging behavior is quite opaque.
The text was updated successfully, but these errors were encountered:
Logging configuration is initialized in
fms_mo/__init__.py
by:fms-model-optimizer/fms_mo/__init__.py
Line 32 in 6b702d1
Customization of
logging.basicConfig
is a common feature found in many python scripts. For example, a user may want to set their own log filename, or output stream, change logging level, etc.However, the first instance of
logging.basicConfig
(in this case byfms_mo
) takes precedence. This initial configuration can be overridden by passingforce=True
to the subsequent calls oflogging.basicConfig
but this is not widely known. The resulting logging behavior is quite opaque.The text was updated successfully, but these errors were encountered: