From 280f74edaa5f61c260fa03740531914f873b8a13 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Fri, 10 Jul 2026 22:37:16 +0200 Subject: [PATCH] log: rename Sud's step-entry log line to describe the ramp phase Every step ramps toward its target first (see _advance()'s own comment) - "Heating to Step N (...)" names that phase instead of the generic "Entering step". --- components/sud.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/sud.py b/components/sud.py index 8e2cb75..5206513 100644 --- a/components/sud.py +++ b/components/sud.py @@ -260,7 +260,7 @@ class Sud(AttributeChange): self.state = SudState.RAMPING self.user_message = next_step.get('user_message') self.step = next_step - self.log.info("Entering step {} ({})".format(next_step['number'], next_step.get('descr'))) + self.log.info("Heating to Step {} ({})".format(next_step['number'], next_step.get('descr'))) def _finish_step(self): if self.step.get('user_wait_for_continue', False):