Skip to content

Commit 8cbf51c

Browse files
authored
fix: Remove incorrect call to logging.basicConfig (#2676)
Signed-off-by: Achal Shah <achals@gmail.com>
1 parent d3e01bc commit 8cbf51c

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

sdk/python/feast/__init__.py

-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import logging
2-
31
from pkg_resources import DistributionNotFound, get_distribution
42

53
from feast.infra.offline_stores.bigquery_source import BigQuerySource
@@ -27,12 +25,6 @@
2725
from .stream_feature_view import StreamFeatureView
2826
from .value_type import ValueType
2927

30-
logging.basicConfig(
31-
format="%(asctime)s %(levelname)s:%(message)s",
32-
datefmt="%m/%d/%Y %I:%M:%S %p",
33-
level=logging.INFO,
34-
)
35-
3628
try:
3729
__version__ = get_distribution(__name__).version
3830
except DistributionNotFound:

0 commit comments

Comments
 (0)