Stop logging config values.
This is just too much noise...
This commit is contained in:
parent
2f93ebba66
commit
5ce49553d8
@ -271,7 +271,6 @@ class ConfigManager(QObject):
|
||||
Return:
|
||||
The value of the option.
|
||||
"""
|
||||
logging.debug("getting {} -> {}".format(sectname, optname))
|
||||
try:
|
||||
sect = self.sections[sectname]
|
||||
except KeyError:
|
||||
@ -285,7 +284,6 @@ class ConfigManager(QObject):
|
||||
mapping = {key: val.value for key, val in sect.values.items()}
|
||||
newval = self._interpolation.before_get(self, sectname, optname,
|
||||
val.value, mapping)
|
||||
logging.debug("interpolated val: {}".format(newval))
|
||||
if transformed:
|
||||
newval = val.typ.transform(newval)
|
||||
return newval
|
||||
|
Loading…
Reference in New Issue
Block a user