Stop logging config values.

This is just too much noise...
This commit is contained in:
Florian Bruhin 2014-05-06 08:36:32 +02:00
parent 2f93ebba66
commit 5ce49553d8

View File

@ -271,7 +271,6 @@ class ConfigManager(QObject):
Return: Return:
The value of the option. The value of the option.
""" """
logging.debug("getting {} -> {}".format(sectname, optname))
try: try:
sect = self.sections[sectname] sect = self.sections[sectname]
except KeyError: except KeyError:
@ -285,7 +284,6 @@ class ConfigManager(QObject):
mapping = {key: val.value for key, val in sect.values.items()} mapping = {key: val.value for key, val in sect.values.items()}
newval = self._interpolation.before_get(self, sectname, optname, newval = self._interpolation.before_get(self, sectname, optname,
val.value, mapping) val.value, mapping)
logging.debug("interpolated val: {}".format(newval))
if transformed: if transformed:
newval = val.typ.transform(newval) newval = val.typ.transform(newval)
return newval return newval