mirror of
https://github.com/beetbox/beets.git
synced 2026-01-02 22:12:53 +01:00
Log loaded plugins at the debug level. (#5953)
Rather than clutter the output with (usually) unimportant information.
This commit is contained in:
commit
6a7bdd6328
1 changed files with 1 additions and 1 deletions
|
|
@ -384,7 +384,7 @@ def load_plugins() -> None:
|
|||
"""
|
||||
if not _instances:
|
||||
names = get_plugin_names()
|
||||
log.info("Loading plugins: {}", ", ".join(sorted(names)))
|
||||
log.debug("Loading plugins: {}", ", ".join(sorted(names)))
|
||||
_instances.extend(filter(None, map(_get_plugin, names)))
|
||||
|
||||
send("pluginload")
|
||||
|
|
|
|||
Loading…
Reference in a new issue