mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
fetchart: Remove some debug logging from google backend
This commit is contained in:
parent
deadc4d049
commit
99fb656f52
1 changed files with 0 additions and 3 deletions
|
|
@ -164,11 +164,8 @@ class GoogleImages(ArtSource):
|
|||
"""Return art URL from google custom search engine
|
||||
given an album title and interpreter.
|
||||
"""
|
||||
self._log.debug('fetching art from google...')
|
||||
api_key = config['fetchart']['google_API_key'].get()
|
||||
engine_id = config['fetchart']['google_engine_ID'].get()
|
||||
self._log.debug('API Key: ' + api_key)
|
||||
self._log.debug('Engine ID: ' + engine_id)
|
||||
if not (album.albumartist and album.album):
|
||||
return
|
||||
search_string = (album.albumartist + ',' + album.album).encode('utf-8')
|
||||
|
|
|
|||
Loading…
Reference in a new issue