diff --git a/src/pylorax/__init__.py b/src/pylorax/__init__.py index bbb0d4dd..90224a4c 100644 --- a/src/pylorax/__init__.py +++ b/src/pylorax/__init__.py @@ -95,8 +95,8 @@ class Lorax(BaseLoraxClass): self.conf.read(conf_file) # set up the output - debug = self.conf.getboolean("lorax", "debug") - output_level = output.DEBUG if debug else output.INFO + self.debug = self.conf.getboolean("lorax", "debug") + output_level = output.DEBUG if self.debug else output.INFO colors = self.conf.getboolean("output", "colors") encoding = self.conf.get("output", "encoding")