diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-03-04 13:04:18 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-03-04 13:04:18 -0500 |
commit | 1731fbbca4ef799546fba47ccafd29c923c3d735 (patch) | |
tree | b8edfab6115d931e77903ba030401bdfec739ce8 /klippy/mathutil.py | |
parent | d62a41b930904f04c282e76de829f2bb21b5cd59 (diff) | |
download | kutter-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/mathutil.py')
-rw-r--r-- | klippy/mathutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/mathutil.py b/klippy/mathutil.py index 737999b2..ed330c61 100644 --- a/klippy/mathutil.py +++ b/klippy/mathutil.py @@ -65,7 +65,7 @@ def background_coordinate_descent(printer, adj_params, params, error_func): while calc_proc.is_alive(): if eventtime > last_report_time + 5.: last_report_time = eventtime - gcode.respond_info("Working on calibration...") + gcode.respond_info("Working on calibration...", log=False) eventtime = reactor.pause(eventtime + .1) # Return results res = parent_conn.recv() |