mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-08-07 05:54:05 -06:00
gcode: Change respond_info() to log by default
It makes sense to log most respond_info() content, so do that by default. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
d62a41b930
commit
1731fbbca4
9 changed files with 17 additions and 29 deletions
|
@ -216,7 +216,7 @@ class PrinterExtruder:
|
|||
"pressure_advance_lookahead_time: %.6f" % (
|
||||
pressure_advance, pressure_advance_lookahead_time))
|
||||
self.printer.set_rollover_info(self.name, "%s: %s" % (self.name, msg))
|
||||
gcode.respond_info(msg)
|
||||
gcode.respond_info(msg, log=False)
|
||||
|
||||
# Dummy extruder class used when a printer has no extruder at all
|
||||
class DummyExtruder:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue