Skip to content

Commit

Permalink
添加DelayeGCode error输出.
Browse files Browse the repository at this point in the history
  • Loading branch information
GuoGeTiertime committed Nov 30, 2023
1 parent f834364 commit eff6539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klippy/extras/delayed_gcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def _gcode_timer_event(self, eventtime):
try:
self.gcode.run_script(self.timer_gcode.render())
except Exception:
logging.exception("Script running error")
logging.exception("Delayed Gcode Script running error")
nextwake = self.reactor.NEVER
if self.repeat:
nextwake = eventtime + self.duration
Expand Down

0 comments on commit eff6539

Please sign in to comment.