mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
missing apps are logged out
This commit is contained in:
parent
0d402b857c
commit
cedf2920f0
1 changed files with 10 additions and 0 deletions
|
|
@ -75,6 +75,16 @@ def register(session, plugins_presets={}):
|
|||
}
|
||||
apps.append(app_data)
|
||||
|
||||
if missing_app_names:
|
||||
log.debug(
|
||||
"Apps not defined in applications usage. ({})".format(
|
||||
", ".join((
|
||||
"\"{}\"".format(app_name)
|
||||
for app_name in missing_app_names
|
||||
))
|
||||
)
|
||||
)
|
||||
|
||||
apps = sorted(apps, key=lambda app: app["name"])
|
||||
app_counter = 0
|
||||
for app in apps:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue