mirror of
https://github.com/dkmstr/openuds.git
synced 2024-12-22 13:34:04 +03:00
Removed excesive exception loggin on config value, nonsense... :)
This commit is contained in:
parent
a7ee5ecb88
commit
8f7dca32b0
@ -186,9 +186,9 @@ class Config:
|
||||
elif not self._crypt:
|
||||
self.set(self._default)
|
||||
self._data = self._default
|
||||
except Exception as e:
|
||||
except Exception as e: # On migration, this could happen
|
||||
logger.info('Error accessing db config %s.%s', self._section.name(), self._key)
|
||||
logger.exception(e)
|
||||
# logger.exception(e)
|
||||
self._data = self._default
|
||||
|
||||
if self._crypt:
|
||||
|
Loading…
Reference in New Issue
Block a user