diff --git a/sdk/python/feast/__init__.py b/sdk/python/feast/__init__.py index 62cc52215c..18b0f4ee24 100644 --- a/sdk/python/feast/__init__.py +++ b/sdk/python/feast/__init__.py @@ -1,5 +1,3 @@ -import logging - from pkg_resources import DistributionNotFound, get_distribution from feast.infra.offline_stores.bigquery_source import BigQuerySource @@ -27,12 +25,6 @@ from .stream_feature_view import StreamFeatureView from .value_type import ValueType -logging.basicConfig( - format="%(asctime)s %(levelname)s:%(message)s", - datefmt="%m/%d/%Y %I:%M:%S %p", - level=logging.INFO, -) - try: __version__ = get_distribution(__name__).version except DistributionNotFound: