[Core] Cleanup startup logging a bit (#10961)

Signed-off-by: Russell Bryant <rbryant@redhat.com>
This commit is contained in:
Russell Bryant
2024-12-06 21:30:23 -05:00
committed by GitHub
parent dcdc3fafe5
commit 69d357ba12
3 changed files with 6 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ def load_general_plugins():
discovered_plugins = entry_points(group='vllm.general_plugins')
if len(discovered_plugins) == 0:
logger.info("No plugins found.")
logger.debug("No plugins found.")
return
logger.info("Available plugins:")
for plugin in discovered_plugins: