aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/toolhead.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-03-04 13:04:18 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-03-04 13:04:18 -0500
commit1731fbbca4ef799546fba47ccafd29c923c3d735 (patch)
treeb8edfab6115d931e77903ba030401bdfec739ce8 /klippy/toolhead.py
parentd62a41b930904f04c282e76de829f2bb21b5cd59 (diff)
downloadkutter-1731fbbca4ef799546fba47ccafd29c923c3d735.tar.gz
kutter-1731fbbca4ef799546fba47ccafd29c923c3d735.tar.xz
kutter-1731fbbca4ef799546fba47ccafd29c923c3d735.zip
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>
Diffstat (limited to 'klippy/toolhead.py')
-rw-r--r--klippy/toolhead.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py
index edf6d326..b7413fb1 100644
--- a/klippy/toolhead.py
+++ b/klippy/toolhead.py
@@ -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: