From bdd576f8b29c3d72f63c7aaa53b3c1c83bb12abb Mon Sep 17 00:00:00 2001 From: Remy Date: Tue, 9 Aug 2011 05:09:37 +0800 Subject: [PATCH] Changed artist already in db message to debug --- headphones/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/importer.py b/headphones/importer.py index 5ddbb20e..43726f59 100644 --- a/headphones/importer.py +++ b/headphones/importer.py @@ -96,7 +96,7 @@ def is_exists(artistid): artistlist = myDB.select('SELECT ArtistID, ArtistName from artists WHERE ArtistID=?', [artistid]) if any(artistid in x for x in artistlist): - logger.info(artistlist[0][1] + u" is already in the database. Updating 'have tracks', but not artist information") + logger.debug(artistlist[0][1] + u" is already in the database. Updating 'have tracks', but not artist information") return True else: return False