aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/probe.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-02-16 13:30:49 -0500
committerKevin O'Connor <kevin@koconnor.net>2018-02-16 13:30:49 -0500
commitc128a9dfd5fc4aceaf67c4212c5323edb4f34068 (patch)
treee9cc172bd905a6ced1be090df7efc34e929bc1c0 /klippy/extras/probe.py
parent6dc623b35d6c26043477d9bd11779134d231379c (diff)
downloadkutter-c128a9dfd5fc4aceaf67c4212c5323edb4f34068.tar.gz
kutter-c128a9dfd5fc4aceaf67c4212c5323edb4f34068.tar.xz
kutter-c128a9dfd5fc4aceaf67c4212c5323edb4f34068.zip
probe: Increase calibration log level from debug to info
Output more information by default from the bed_tilt and delta_calibrate commands. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/probe.py')
-rw-r--r--klippy/extras/probe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/probe.py b/klippy/extras/probe.py
index 05634139..70cc2a1d 100644
--- a/klippy/extras/probe.py
+++ b/klippy/extras/probe.py
@@ -168,7 +168,7 @@ def coordinate_descent(adj_params, params, error_func):
continue
params[param_name] = orig
dp[param_name] *= 0.9
- logging.debug("best_err: %s rounds: %d", best_err, rounds)
+ logging.info("Coordinate descent best_err: %s rounds: %d", best_err, rounds)
return params
def load_config(config):