From 99fb656f52b128dccd300e1683b97012a879686f Mon Sep 17 00:00:00 2001 From: Lachlan Charlick Date: Mon, 28 Dec 2015 23:57:38 +1030 Subject: [PATCH] fetchart: Remove some debug logging from google backend --- beetsplug/fetchart.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/beetsplug/fetchart.py b/beetsplug/fetchart.py index 297db5d0d..7aab88567 100644 --- a/beetsplug/fetchart.py +++ b/beetsplug/fetchart.py @@ -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')