Skip to content
Snippets Groups Projects
Commit 619b7e70 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Debug statement, not warning, when config file does not exist

parent 5544712a
No related branches found
No related tags found
No related merge requests found
...@@ -373,9 +373,9 @@ class Settings(object): ...@@ -373,9 +373,9 @@ class Settings(object):
with open(configFile, 'rb') as f: with open(configFile, 'rb') as f:
return pickle.load(f) return pickle.load(f)
except: except:
log.warning('Unable to load stored {} configuration file ' log.debug('Unable to load stored {} configuration file '
'{}'.format(self.__configID, configFile), '{}'.format(self.__configID, configFile),
exc_info=True) exc_info=True)
return {} return {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment