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
import logging
root = logging.getLogger()
root_level = logging.root.level
import fdk
# Set root logger level back to original level
# Before importing fdk library
root.setLevel(root_level)
Please fix this issue so I don't have to write code to handle this!
Description
Logging level changed to debug after importing
fdk
. This is possibly due to this line inlog.py
.Steps to reproduce the issue:
Describe the results you received:
Logging level does not equal to DEBUG before importing
fdk
but is changed to DEBUG after import.Describe the results you expected:
Logging level does not change after importing
fdk
.Additional information you deem important (e.g. issue happens only occasionally):
Output of
FDK version
(PIP output):Additional environment details (python version, code sample, etc.):
The text was updated successfully, but these errors were encountered: