mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-12 17:27:54 -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
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue