From b09c1585c11d91381d491e4fbf405c2e37fa77a0 Mon Sep 17 00:00:00 2001 From: Dj Date: Sun, 26 Apr 2020 15:52:57 -0700 Subject: [PATCH] Remove basicConfig as it is not needed, fixes #478 (#482) --- CHANGELOG.md | 4 +++- spotipy/client.py | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cba9962..44e6024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -// add new changes here +### Fixed + + - Logging regression due to the addition of `logging.basicConfig()` which was unneeded. - Added a method to update the auth token. diff --git a/spotipy/client.py b/spotipy/client.py index b98153d..f39ab8c 100644 --- a/spotipy/client.py +++ b/spotipy/client.py @@ -14,7 +14,6 @@ import six from spotipy.exceptions import SpotifyException -logging.basicConfig() logger = logging.getLogger(__name__)