diff options
author | kali <kali@leap.se> | 2013-02-01 00:51:13 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2013-02-01 00:51:58 +0900 |
commit | e0ef38cb4e62db814debe2953a2601848af9f6f0 (patch) | |
tree | 7e29b2c6525456a74e7c52fdb47ca511acf68cf0 | |
parent | c74f3bdca32fa61148ef0691d48d4b2a9c124d9d (diff) |
change log severity for not found config files
-rw-r--r-- | src/leap/base/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/base/config.py b/src/leap/base/config.py index b88f6df2..85bb3d66 100644 --- a/src/leap/base/config.py +++ b/src/leap/base/config.py @@ -172,8 +172,8 @@ class JSONLeapConfig(BaseLeapConfig): if os.path.isfile(fromfile): self._config.load(fromfile=fromfile) else: - logger.error('tried to load config from non-existent path') - logger.error('Not Found: %s', fromfile) + logger.warning('tried to load config from non-existent path') + logger.warning('Not Found: %s', fromfile) def fetch(self, uri, fetcher=None, verify=True, force_dl=False): if not fetcher: |