Updated verbose

This commit is contained in:
dbroqua 2019-12-17 11:16:18 +01:00
parent 19588c67d6
commit 929e691a68

View File

@ -80,6 +80,7 @@ const getRemoteCover = (song, callback) => {
if (res.results && res.results.length === 1) {
callback(null, res.results[0].cover_image)
} else {
console.log('[INFO] No cover found for:', song.album, song.artist)
callback(null, null)
}
})