mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] Set 'app status file not found' log level to debug
This commit is contained in:
parent
fe0a8e4cd9
commit
fdc7d2e8c5
1 changed files with 2 additions and 1 deletions
|
@ -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'),
|
||||||
|
|
Loading…
Add table
Reference in a new issue