From d0c61f0f76b116e07567e6fbfe2a6bb585545249 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sat, 24 Dec 2016 10:17:12 -0500 Subject: klippy: Log the contents of the config file at startup Signed-off-by: Kevin O'Connor --- klippy/klippy.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'klippy/klippy.py') 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( -- cgit v1.2.3-70-g09d2