From 54445882d8c148f8a3fd6d3f354f2aba0676fc4a Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Tue, 29 Apr 2014 10:23:07 -0700 Subject: [PATCH] replaygain: Log when files are unsupported --- beetsplug/replaygain.py | 1 + 1 file changed, 1 insertion(+) diff --git a/beetsplug/replaygain.py b/beetsplug/replaygain.py index acf7afc86..749621e9a 100644 --- a/beetsplug/replaygain.py +++ b/beetsplug/replaygain.py @@ -135,6 +135,7 @@ class CommandBackend(Backend): supported_items = filter(self.format_supported, album.items()) if len(supported_items) != len(album.items()): + log.debug('replaygain: tracks are of unsupported format') return AlbumGain(None, []) output = self.compute_gain(supported_items, True)