mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
Changed log to debug
This commit is contained in:
parent
b1b0926eed
commit
abe4f203b1
1 changed files with 1 additions and 1 deletions
|
|
@ -168,7 +168,7 @@ class SpotifyPlugin(MetadataSourcePlugin, BeetsPlugin):
|
|||
elif response.status_code == 429:
|
||||
seconds = response.headers.get('Retry-After',
|
||||
DEFAULT_WAITING_TIME)
|
||||
self._log.info('Too many API requests. Retrying after {} \
|
||||
self._log.debug('Too many API requests. Retrying after {} \
|
||||
seconds.', seconds)
|
||||
time.sleep(int(seconds) + 1)
|
||||
return self._handle_response(request_type, url, params=params)
|
||||
|
|
|
|||
Loading…
Reference in a new issue