1
0
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:
Adolfo Gómez García 2024-01-15 02:09:10 +01:00
parent a7ee5ecb88
commit 8f7dca32b0
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23

View File

@ -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: