diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-12-24 10:17:12 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-12-24 10:18:41 -0500 |
commit | d0c61f0f76b116e07567e6fbfe2a6bb585545249 (patch) | |
tree | c373d16577757e004350983a84da0d840250a6eb /klippy/klippy.py | |
parent | 451ffd567d3a2b4871229681ec0449b87cc519f5 (diff) | |
download | kutter-d0c61f0f76b116e07567e6fbfe2a6bb585545249.tar.gz kutter-d0c61f0f76b116e07567e6fbfe2a6bb585545249.tar.xz kutter-d0c61f0f76b116e07567e6fbfe2a6bb585545249.zip |
klippy: Log the contents of the config file at startup
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r-- | klippy/klippy.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index 7c1b7618..f9f55de1 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -73,6 +73,14 @@ class ConfigWrapper: def getsection(self, section): return ConfigWrapper(self.printer, section) +class ConfigLogger(): + def __init__(self, cfg): + logging.info("===== Config file =====") + cfg.write(self) + logging.info("=======================") + def write(self, data): + logging.info(data.strip()) + class Printer: def __init__(self, conffile, input_fd, is_fileinput=False): self.conffile = conffile @@ -112,6 +120,8 @@ class Printer: if not res: raise ConfigParser.Error("Unable to open config file %s" % ( self.conffile,)) + if self.debugoutput is None: + ConfigLogger(self.fileconfig) self.mcu = mcu.MCU(self, ConfigWrapper(self, 'mcu')) if self.fileconfig.has_section('fan'): self.objects['fan'] = fan.PrinterFan( |