chore: tweak log

This commit is contained in:
bennykok 2024-04-12 18:43:07 +08:00
parent 03d12e4099
commit 5da56b5507

View File

@ -637,8 +637,9 @@ async def send_json_override(self, event, data, sid=None):
if prompt_id in prompt_metadata: if prompt_id in prompt_metadata:
node = data.get('node') node = data.get('node')
class_type = prompt_metadata[prompt_id].workflow_api[node]['class_type'] class_type = prompt_metadata[prompt_id].workflow_api[node]['class_type']
print("skipping preview image") print("executed", class_type)
if class_type == "PreviewImage": if class_type == "PreviewImage":
print("skipping preview image")
return return
await update_run_with_output(prompt_id, data.get('output'), node_id=data.get('node')) await update_run_with_output(prompt_id, data.get('output'), node_id=data.get('node'))