From 5da56b55076f5b8290094565c57aa9e92b0d48cf Mon Sep 17 00:00:00 2001 From: bennykok Date: Fri, 12 Apr 2024 18:43:07 +0800 Subject: [PATCH] chore: tweak log --- custom_routes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/custom_routes.py b/custom_routes.py index 018bc4c..525b3cc 100644 --- a/custom_routes.py +++ b/custom_routes.py @@ -637,8 +637,9 @@ async def send_json_override(self, event, data, sid=None): if prompt_id in prompt_metadata: node = data.get('node') class_type = prompt_metadata[prompt_id].workflow_api[node]['class_type'] - print("skipping preview image") + print("executed", class_type) if class_type == "PreviewImage": + print("skipping preview image") return await update_run_with_output(prompt_id, data.get('output'), node_id=data.get('node'))