mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +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
|
"""Return art URL from google custom search engine
|
||||||
given an album title and interpreter.
|
given an album title and interpreter.
|
||||||
"""
|
"""
|
||||||
self._log.debug('fetching art from google...')
|
|
||||||
api_key = config['fetchart']['google_API_key'].get()
|
api_key = config['fetchart']['google_API_key'].get()
|
||||||
engine_id = config['fetchart']['google_engine_ID'].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):
|
if not (album.albumartist and album.album):
|
||||||
return
|
return
|
||||||
search_string = (album.albumartist + ',' + album.album).encode('utf-8')
|
search_string = (album.albumartist + ',' + album.album).encode('utf-8')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue