mirror of
https://github.com/beetbox/beets.git
synced 2025-12-28 11:32:30 +01:00
Making logging level consistent when checker is not found.
This commit is contained in:
parent
291803d49a
commit
b46fb956b7
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ class BadFiles(BeetsPlugin):
|
|||
ext = os.path.splitext(item.path)[1][1:].decode('utf8', 'ignore')
|
||||
checker = self.get_checker(ext)
|
||||
if not checker:
|
||||
self._log.debug(u"no checker specified in the config for {}",
|
||||
self._log.error(u"no checker specified in the config for {}",
|
||||
ext)
|
||||
continue
|
||||
path = item.path
|
||||
|
|
|
|||
Loading…
Reference in a new issue