aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/z_tilt.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/extras/z_tilt.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/extras/z_tilt.py')
-rw-r--r--klippy/extras/z_tilt.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/klippy/extras/z_tilt.py b/klippy/extras/z_tilt.py
index 04b7d4c1..bcbfddd9 100644
--- a/klippy/extras/z_tilt.py
+++ b/klippy/extras/z_tilt.py
@@ -84,7 +84,6 @@ class ZTilt:
stepstrs = ["%s = %.6f" % (s.get_name(), so) for so, s in positions]
msg = "Making the following Z adjustments:\n%s\nz_adjust = %.6f" % (
"\n".join(stepstrs), z_adjust)
- logging.info(msg)
self.gcode.respond_info(msg)
# Move each z stepper (sorted from lowest to highest) until they match
positions.sort()