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>
This commit is contained in:
Kevin O'Connor
2018-02-16 13:30:49 -05:00
parent 6dc623b35d
commit c128a9dfd5
3 changed files with 12 additions and 13 deletions

View File

@@ -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):