From 2aff8ff6a58aecbc46b53aecc03e5c0e70ae5dbf Mon Sep 17 00:00:00 2001 From: Achal Shah Date: Wed, 11 May 2022 23:29:50 -0700 Subject: [PATCH] fix: Remove incorrect call to logging.basicConfig Signed-off-by: Achal Shah --- sdk/python/feast/__init__.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/sdk/python/feast/__init__.py b/sdk/python/feast/__init__.py index 62cc52215c9..18b0f4ee242 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: