Log loaded plugins at the debug level. (#5953)

Rather than clutter the output with (usually) unimportant information.
This commit is contained in:
Šarūnas Nejus 2025-08-24 13:18:45 +01:00 committed by GitHub
commit 6a7bdd6328
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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")