[fix] Set 'app status file not found' log level to debug

This commit is contained in:
Jérôme Lebleu 2016-02-26 20:03:52 +01:00
parent fe0a8e4cd9
commit fdc7d2e8c5

View file

@ -1049,7 +1049,8 @@ def _get_app_status(app_id, format_date=False):
with open(app_setting_path + '/status.json') as f: with open(app_setting_path + '/status.json') as f:
status = json.loads(str(f.read())) status = json.loads(str(f.read()))
except IOError: 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 # Create app status
status = { status = {
'installed_at': app_setting(app_id, 'install_time'), 'installed_at': app_setting(app_id, 'install_time'),