mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-19 01:43:42 +01:00
FEAT: add installed extensions to log (#1857)
for immediate vision of installed extensions
This commit is contained in:
parent
c7cf743852
commit
905afc1f5c
@ -180,6 +180,10 @@ async def check_installed_extensions(app: FastAPI):
|
||||
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]:
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user