From 3b7d38e8bcf1efda324e5cc863fd5db50f29c8ed Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Tue, 9 Apr 2013 11:23:06 +0200 Subject: [PATCH] scrobbler: Log who connected to Last.fm --- mopidy/frontends/scrobbler/actor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/frontends/scrobbler/actor.py b/mopidy/frontends/scrobbler/actor.py index 1809661a..74a11f82 100644 --- a/mopidy/frontends/scrobbler/actor.py +++ b/mopidy/frontends/scrobbler/actor.py @@ -32,7 +32,7 @@ class ScrobblerFrontend(pykka.ThreadingActor, CoreListener): api_key=API_KEY, api_secret=API_SECRET, username=self.config['scrobbler']['username'], password_hash=pylast.md5(self.config['scrobbler']['password'])) - logger.info('Connected to Last.fm') + logger.info('Scrobbler connected to Last.fm') except (pylast.NetworkError, pylast.MalformedResponseError, pylast.WSError) as e: logger.error('Error during Last.fm setup: %s', e)