diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/changes/bug_fix-path-error | 1 | ||||
-rw-r--r-- | client/src/leap/soledad/client/__init__.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/client/changes/bug_fix-path-error b/client/changes/bug_fix-path-error new file mode 100644 index 00000000..1048f91e --- /dev/null +++ b/client/changes/bug_fix-path-error @@ -0,0 +1 @@ + o Change error severity for missing secrets path. diff --git a/client/src/leap/soledad/client/__init__.py b/client/src/leap/soledad/client/__init__.py index f3820a51..534040ef 100644 --- a/client/src/leap/soledad/client/__init__.py +++ b/client/src/leap/soledad/client/__init__.py @@ -555,7 +555,7 @@ class Soledad(object): try: self._load_secrets() # try to load from disk except IOError, e: - logger.error('IOError: %s' % str(e)) + logger.warning('IOError: %s' % str(e)) try: self._get_storage_secret() return True |