aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/mcu.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-04-03 12:13:06 -0400
committerKevin O'Connor <kevin@koconnor.net>2018-04-03 13:18:52 -0400
commitbb8926d67af485efd962fae5c464c3f214bfd8ae (patch)
treecb62496c20bb9c1969bfa80b176e15285ae7f02f /klippy/mcu.py
parenta301713361f7c2a1b397697b09dacab18ffdc05c (diff)
downloadkutter-bb8926d67af485efd962fae5c464c3f214bfd8ae.tar.gz
kutter-bb8926d67af485efd962fae5c464c3f214bfd8ae.tar.xz
kutter-bb8926d67af485efd962fae5c464c3f214bfd8ae.zip
klippy: Automatically clear rollover_info on each restart
Automatically clear the information printed at the start of each log file rollover on a klippy internal restart. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/mcu.py')
-rw-r--r--klippy/mcu.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/klippy/mcu.py b/klippy/mcu.py
index c00db3c7..8fcd3918 100644
--- a/klippy/mcu.py
+++ b/klippy/mcu.py
@@ -424,7 +424,6 @@ class MCU:
self._emergency_stop_cmd = None
self._is_shutdown = self._is_timeout = False
self._shutdown_msg = ""
- printer.set_rollover_info(self._name, None)
# Config building
pins.get_printer_pins(printer).register_chip(self._name, self)
self._oid_count = 0
@@ -559,7 +558,6 @@ class MCU:
self._check_restart("CRC mismatch")
raise error("MCU '%s' CRC does not match config" % (self._name,))
move_count = config_params['move_count']
- logging.info("Configured MCU '%s' (%d moves)", self._name, move_count)
msgparser = self._serial.msgparser
info = [
"Configured MCU '%s' (%d moves)" % (self._name, move_count),