Changed artist already in db message to debug

This commit is contained in:
Remy
2011-08-09 05:09:37 +08:00
committed by sbuser
parent a66aa5f418
commit bdd576f8b2

View File

@@ -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