STYLE: Update log messages

This commit is contained in:
Dominique Barton 2019-02-21 00:00:54 +01:00
parent ed18ad349b
commit bf76441249
2 changed files with 6 additions and 6 deletions

View file

@ -104,7 +104,7 @@ class Card(object):
if card_type is None:
card_type = cls.get_type(cls)
LOGGER.info('Registering %s card with UID "%s" and parameter "%s"', card_type, uid, parameter)
LOGGER.info('Registering %s card %s with parameter "%s"', card_type, uid, parameter)
if cls.get_class(card_type) == Card:
error = 'Registering cards without explicit types are not allowed. ' \
@ -131,7 +131,7 @@ class TrackCard(Card):
:param mopidy.core.Core mopidy_core: The mopidy core instance
'''
LOGGER.debug('Replacing tracklist with URI "%s"', self.parameter)
LOGGER.info('Replacing tracklist with URI "%s"', self.parameter)
mopidy_core.tracklist.clear()
mopidy_core.tracklist.add(uri=self.parameter)
mopidy_core.playback.play()
@ -148,5 +148,5 @@ class VolumeCard(Card):
:param mopidy.core.Core mopidy_core: The mopidy core instance
'''
LOGGER.debug('Setting volume to %s', self.parameter)
LOGGER.info('Setting volume to %s', self.parameter)
mopidy_core.mixer.set_volume(int(self.parameter))

View file

@ -52,7 +52,7 @@ class CardReader(Thread):
uid = reader.uid
if now - prev_time > 1 or uid != prev_uid:
LOGGER.info('Card with UID %s read', uid)
LOGGER.info('Card %s read', uid)
self.handle_uid(uid)
prev_time = now
@ -72,10 +72,10 @@ class CardReader(Thread):
card = Card(uid)
if card.registered:
LOGGER.info('Card is registered, triggering action')
LOGGER.info('Triggering action of registered card')
card.action(mopidy_core=self.core)
else:
LOGGER.info('Card is not registered, doing nothing')
LOGGER.info('Card is not registered, thus doing nothing')
CardReader.latest = {
'time': time(),