From 929e691a68e99de5213a511bce9ec75c915436e8 Mon Sep 17 00:00:00 2001 From: dbroqua Date: Tue, 17 Dec 2019 11:16:18 +0100 Subject: [PATCH] Updated verbose --- libs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/libs.js b/libs.js index c36feba..1c5f0e7 100644 --- a/libs.js +++ b/libs.js @@ -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) } })