Add debug log for plugin paths

This commit is contained in:
guibog 2015-03-11 15:52:00 +08:00
parent ee6fba1e82
commit 295ebc0bc6

View file

@ -921,6 +921,7 @@ def _load_plugins(config):
"""
paths = config['pluginpath'].get(confit.StrSeq(split=False))
paths = map(util.normpath, paths)
log.debug('plugin paths: {0}', util.displayable_path(paths))
import beetsplug
beetsplug.__path__ = paths + beetsplug.__path__