From 7e4a0f6211ab4ac92f33ebded5cbcc09eb814c84 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 9 Nov 2014 14:23:43 -0800 Subject: [PATCH] play: Log a message when no output is produced --- beetsplug/play.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beetsplug/play.py b/beetsplug/play.py index c98be40a0..770b84284 100644 --- a/beetsplug/play.py +++ b/beetsplug/play.py @@ -105,6 +105,8 @@ def play_music(lib, opts, args): util.displayable_path(command[0]), output.decode('utf8', 'ignore'), )) + else: + log.debug(u'play: no output') ui.print_(u'Playing {0} {1}.'.format(len(selection), item_type))