From 5b006dbf0e074f4070f6832d2c64f3b306935e3f Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 6 Feb 2017 08:37:41 -0500 Subject: [PATCH] Adding info/debug message for fetchlist --- src/yunohost/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index 211009a0..d5874d1e 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -101,6 +101,7 @@ def app_fetchlist(url=None, name=None): m18n.n('custom_appslist_name_required')) try: + logger.info("Fetching app list '%s' from %s ...", name, url) urlretrieve(url, '%s/%s.json' % (repo_path, name)) except Exception as e: raise MoulinetteError(errno.EBADR, m18n.n('appslist_retrieve_error'), error=str(e))