diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-07-28 14:59:04 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-07-30 12:53:59 -0400 |
commit | 1f7c3fc8ec37319cb3b9309343d301a9d30afdfd (patch) | |
tree | 3ef42f47d9943b4f0628d84250313eb54bb796ec /klippy/gcode.py | |
parent | 9213646c63c6027a7c43ad254ba9cf09ebd166df (diff) | |
download | kutter-1f7c3fc8ec37319cb3b9309343d301a9d30afdfd.tar.gz kutter-1f7c3fc8ec37319cb3b9309343d301a9d30afdfd.tar.xz kutter-1f7c3fc8ec37319cb3b9309343d301a9d30afdfd.zip |
gcode: Report the final print_time in debuginput mode
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/gcode.py')
-rw-r--r-- | klippy/gcode.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/klippy/gcode.py b/klippy/gcode.py index 22ec6606..d517a3f0 100644 --- a/klippy/gcode.py +++ b/klippy/gcode.py @@ -675,6 +675,8 @@ class GCodeParser: def request_restart(self, result): if self.is_printer_ready: print_time = self.toolhead.get_last_move_time() + if result == 'exit': + logging.info("Exiting (print time %.3fs)" % (print_time,)) self.printer.send_event("gcode:request_restart", print_time) self.toolhead.dwell(0.500) self.toolhead.wait_moves() |