mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-23 14:44:20 -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
|
@ -462,7 +462,7 @@ class ToolHead:
|
|||
max_velocity, max_accel, self.requested_accel_to_decel,
|
||||
square_corner_velocity))
|
||||
self.printer.set_rollover_info("toolhead", "toolhead: %s" % (msg,))
|
||||
gcode.respond_info(msg)
|
||||
gcode.respond_info(msg, log=False)
|
||||
def cmd_M204(self, params):
|
||||
gcode = self.printer.lookup_object('gcode')
|
||||
if 'P' in params and 'T' in params and 'S' not in params:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue