From fb6ee0099a8b64d40aac8952f0a4842d422691f1 Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Thu, 6 Aug 2026 15:44:10 +0200 Subject: [PATCH] Removed debug log --- shared/cookingState.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/shared/cookingState.py b/shared/cookingState.py index d5637af..c841394 100644 --- a/shared/cookingState.py +++ b/shared/cookingState.py @@ -179,8 +179,6 @@ class CookingState: elapsed_time = self.get_elapsed_time() self.estimated_remaining_time = self.get_remaining_time_estimation() - print(elapsed_time, self.cook_time, self.current_dish_temp, self.target_temp, self._paused_duration, self._pause_started_at, now) - if self.current_dish_temp is not None: if elapsed_time < (self.cook_time / 2.0) and self.current_dish_temp >= self.target_temp and (self._paused_duration == None or self._paused_duration < 5): # If the dish is heating too fast, we require stirring self.state = CookingStates.STIRRING_REQUIRED