FEAT: add installed extensions to log (#1857)
for immediate vision of installed extensions
This commit is contained in:
parent
c7cf743852
commit
905afc1f5c
1 changed files with 4 additions and 0 deletions
|
|
@ -180,6 +180,10 @@ async def check_installed_extensions(app: FastAPI):
|
||||||
f"Failed to re-install extension: {ext.id} ({ext.installed_version})"
|
f"Failed to re-install extension: {ext.id} ({ext.installed_version})"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
logger.info(f"Installed Extensions ({len(installed_extensions)}):")
|
||||||
|
for ext in installed_extensions:
|
||||||
|
logger.info(f"{ext.id} ({ext.installed_version})")
|
||||||
|
|
||||||
|
|
||||||
async def build_all_installed_extensions_list() -> List[InstallableExtension]:
|
async def build_all_installed_extensions_list() -> List[InstallableExtension]:
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue