From 703435d10e5055d8daa87ecec4b4d293435c77a7 Mon Sep 17 00:00:00 2001 From: Rob Ballantyne Date: Tue, 26 Aug 2025 12:42:04 +0100 Subject: [PATCH] Improve MODEL_SERVER_START_* messages --- workers/comfyui-json/server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workers/comfyui-json/server.py b/workers/comfyui-json/server.py index 45b3570..702330e 100644 --- a/workers/comfyui-json/server.py +++ b/workers/comfyui-json/server.py @@ -15,10 +15,10 @@ from .data_types import ComfyWorkflowData MODEL_SERVER_URL = os.getenv("MODEL_SERVER_URL", "http://127.0.0.1:18288") # This is the last log line that gets emitted once comfyui+extensions have been fully loaded -MODEL_SERVER_START_LOG_MSG = "To see the GUI go to: http://127.0.0.1:18188" +MODEL_SERVER_START_LOG_MSG = "To see the GUI go to: " MODEL_SERVER_ERROR_LOG_MSGS = [ "MetadataIncompleteBuffer", # This error is emitted when the downloaded model is corrupted - "Value not in list: unet_name", # This error is emitted when the model file is not there at all + "Value not in list: ", # This error is emitted when the model file is not there at all ]