mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] Use INFO logging level if app setting is not found
This commit is contained in:
parent
6a836ae0bf
commit
13da1e797c
1 changed files with 1 additions and 1 deletions
|
@ -788,7 +788,7 @@ def app_setting(app, key, value=None, delete=False):
|
|||
try:
|
||||
return app_settings[key]
|
||||
except:
|
||||
logger.exception("cannot get app setting '%s' for '%s'", key, app)
|
||||
logger.info("cannot get app setting '%s' for '%s'", key, app)
|
||||
return None
|
||||
else:
|
||||
yaml_settings=['redirected_urls','redirected_regex']
|
||||
|
|
Loading…
Add table
Reference in a new issue