-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
Expected Behavior
import feast
logging.basicConfig(level=level, format=FORMAT)
logging.error("msg")
should print logging message according to FORMAT
Current Behavior
It uses the format defined in feast at the module level.
Steps to reproduce
Same as in "Expected Behavior"
Specifications
- Version: 0.18.1
- Platform: Linux
- Subsystem: -
Possible Solution
I see that basicConfig is called here:
Line 84 in c9eda79
| logging.basicConfig( |
feast/sdk/python/feast/__init__.py
Line 30 in 0ca6297
| logging.basicConfig( |
If there are any other entry points that need to set up logging, they should call the function, but the call in __init__.py must be removed.