From ab24a35394310bdae5072c5bc91826feb38902ec Mon Sep 17 00:00:00 2001 From: kaliko Date: Fri, 21 Jan 2022 10:49:18 +0100 Subject: [PATCH] Better log level when trying without mbid --- sima/lib/webserv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sima/lib/webserv.py b/sima/lib/webserv.py index 8201964..6c53d03 100644 --- a/sima/lib/webserv.py +++ b/sima/lib/webserv.py @@ -123,7 +123,7 @@ class WebService(AdvancedPlugin): except WSNotFound as err: self.log.warning('%s: %s', self.ws.name, err) if artist.mbid: - self.log.debug('Trying without MusicBrainzID') + self.log.info('Trying without MusicBrainzID') try: return self.ws_similar_artists(Artist(name=artist.name)) except WSNotFound as err: -- 2.39.2