From fdc7d2e8c5d8e74e874f2926f47c301471108a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Fri, 26 Feb 2016 20:03:52 +0100 Subject: [PATCH] [fix] Set 'app status file not found' log level to debug --- src/yunohost/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index 92eea6ebc..5e6a0ce08 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -1049,7 +1049,8 @@ def _get_app_status(app_id, format_date=False): with open(app_setting_path + '/status.json') as f: status = json.loads(str(f.read())) except IOError: - logger.exception("status file not found for '%s'", app_id) + logger.debug("status file not found for '%s'", app_id, + exc_info=1) # Create app status status = { 'installed_at': app_setting(app_id, 'install_time'),