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__)