Remove basicConfig as it is not needed, fixes #478 (#482)

This commit is contained in:
Dj 2020-04-26 15:52:57 -07:00 committed by GitHub
parent 71a19de031
commit b09c1585c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [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. - Added a method to update the auth token.

View File

@ -14,7 +14,6 @@ import six
from spotipy.exceptions import SpotifyException from spotipy.exceptions import SpotifyException
logging.basicConfig()
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)