From 4688c21c54dfb89ef9902b607521a8cc0e99c94a Mon Sep 17 00:00:00 2001 From: Thijs Triemstra Date: Fri, 17 Nov 2023 04:06:13 +0100 Subject: klippy: Replace deprecated logger.warn with logger.warning (#6385) Replace deprecated logger.warn with logger.warning logger.warn will be removed in Python 3.13 Signed-off-by: Thijs Triemstra --- klippy/extras/thermistor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'klippy/extras/thermistor.py') diff --git a/klippy/extras/thermistor.py b/klippy/extras/thermistor.py index d04225b7..16d6ca61 100644 --- a/klippy/extras/thermistor.py +++ b/klippy/extras/thermistor.py @@ -33,7 +33,8 @@ class Thermistor: / (ln3_r12 - ln3_r13 * ln_r12 / ln_r13)) if self.c3 <= 0.: beta = ln_r13 / inv_t13 - logging.warn("Using thermistor beta %.3f in heater %s", beta, name) + logging.warning("Using thermistor beta %.3f in heater %s", + beta, name) self.setup_coefficients_beta(t1, r1, beta) return self.c2 = (inv_t12 - self.c3 * ln3_r12) / ln_r12 -- cgit v1.2.3-70-g09d2