Skip to content

Commit

Permalink
fix: Remove incorrect call to logging.basicConfig (#2676)
Browse files Browse the repository at this point in the history
Signed-off-by: Achal Shah <achals@gmail.com>
  • Loading branch information
achals authored May 12, 2022
1 parent d3e01bc commit 8cbf51c
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions sdk/python/feast/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import logging

from pkg_resources import DistributionNotFound, get_distribution

from feast.infra.offline_stores.bigquery_source import BigQuerySource
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 8cbf51c

Please sign in to comment.