mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-10 00:07:54 -06:00
gcode: Report the final print_time in debuginput mode
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
9213646c63
commit
1f7c3fc8ec
2 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue