Skip to content

Commit b46fb95

Browse files
committed
Making logging level consistent when checker is not found.
1 parent 291803d commit b46fb95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beetsplug/badfiles.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def check_bad(self, lib, opts, args):
110110
ext = os.path.splitext(item.path)[1][1:].decode('utf8', 'ignore')
111111
checker = self.get_checker(ext)
112112
if not checker:
113-
self._log.debug(u"no checker specified in the config for {}",
113+
self._log.error(u"no checker specified in the config for {}",
114114
ext)
115115
continue
116116
path = item.path

0 commit comments

Comments
 (0)