Visit ComfyUI Online for ready-to-use ComfyUI environment
Debug and inspect data streams in ComfyUI with detailed output for troubleshooting and data processing.
The SeargeDebugPrinter
node is designed to help you debug and inspect data streams within the ComfyUI environment. This node is particularly useful for AI artists who need to understand the structure and content of their data at various stages of processing. By enabling this node, you can print detailed information about the data stream, including nested dictionaries, lists, and tuples, in a readable format. This can be invaluable for troubleshooting and ensuring that your data is being processed correctly. The node provides a clear and structured output, making it easier to identify any issues or anomalies in your data.
This parameter is a boolean that determines whether the debug printing is active. When set to True
, the node will print the data stream details; when set to False
, it will bypass the printing process. The default value is True
.
This optional parameter represents the data stream you want to inspect. It accepts a data stream of type SRG_DATA_STREAM
. If no data is provided, the node will not perform any printing.
This optional parameter allows you to add a custom prefix to each line of the printed output. It accepts a string value, which can help you identify the source of the debug output when multiple debug printers are used. The default value is an empty string.
The output parameter data
returns the same data stream that was input. This allows you to pass the data stream to subsequent nodes without any modifications, ensuring that the debug printing does not interfere with the data flow.
enabled
parameter only when you need to debug your data stream to avoid unnecessary console output.prefix
parameter to differentiate between multiple debug outputs, especially in complex workflows.data
parameter is in the correct format (SRG_DATA_STREAM
) to avoid invalid data stream errors.data
parameter is not a dictionary.enabled
parameter is set to False
, the node will not print any debug information.enabled
parameter to True
to activate the debug printing.prefix
parameter is not set or is an empty string, no prefix will be added to the printed output.prefix
parameter to add a custom prefix to the debug output.© Copyright 2024 RunComfy. All Rights Reserved.