Unverified Commit 2f427c2d authored by youkaichao's avatar youkaichao Committed by GitHub
Browse files

[misc][plugin] improve log messages (#10386)


Signed-off-by: default avataryoukaichao <youkaichao@gmail.com>
parent 755b8535
......@@ -27,6 +27,9 @@ def load_general_plugins():
allowed_plugins = envs.VLLM_PLUGINS
discovered_plugins = entry_points(group='vllm.general_plugins')
if len(discovered_plugins) == 0:
logger.info("No plugins found.")
return
logger.info("Available plugins:")
for plugin in discovered_plugins:
logger.info("name=%s, value=%s, group=%s", plugin.name, plugin.value,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment