Skip to content

Commit

Permalink
Merge pull request #1993 from YunoHost/fix-no-label
Browse files Browse the repository at this point in the history
Lower logging about failure to retrieve app label
  • Loading branch information
alexAubin authored Nov 2, 2024
2 parents f7e167b + f8e9763 commit 194a4f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def app_info(app, full=False, upgradable=False):
ret["label"] = permissions.get(app + ".main", {}).get("label")

if not ret["label"]:
logger.warning(f"Failed to get label for app {app} ?")
logger.debug(f"Failed to get label for app {app}, maybe it is not a webapp?")
ret["label"] = local_manifest["name"]
return ret

Expand Down

0 comments on commit 194a4f4

Please sign in to comment.