Nova Console ๐ฅ๏ธ
The debugging node you'll end up using in every graph
- value
- text
Every node in this pack that has something to say - a tag listing, a mastering report, a dataset review, a training log - says it by returning a console string. Somebody had to render that string somewhere. Nova Console ๐ฅ๏ธ is the somewhere, and it's the least glamorous node in the pack and the one you'll place most often.
It shows whatever you wire into it on the node face, and also writes it to the terminal ComfyUI is running in. That's it. That's the node.
Why it's more useful than it sounds
Two implementation details make it work where a generic text-preview node wouldn't.
The input is a wildcard type. Any output in ComfyUI can connect to it - strings, numbers, NOVA_FILES, NOVA_TABLE, JSON blobs. You don't need to know the type before you wire it.
INPUT_IS_LIST is on. Nova Batch Load Audio's filenames and Nova SQLite Reader's column_headers are list outputs. Without this flag ComfyUI would run the display node once per item, and you'd get twenty separate little boxes instead of one listing. With it, the whole list arrives at once and gets rendered as a single numbered block - which is actually how you want to read a folder listing.
Under the hood it renders supported structured types properly rather than dumping Python reprs at you: dicts and JSON come out as indented JSON, batch and table types get their own formatting.
Inputs and output
- value - the thing. Anything.
- label (optional) - printed above the value. Two consoles side by side in a graph with no labels is a special kind of confusion; use it.
- print_to_server_log - on by default. Turn it off when you're debugging something in the browser and don't want the terminal scrolling.
- max_lines - trim the display. 0 shows everything, which is fine until you point it at a dataset review with hundreds of warnings.
Output: text - the rendered string, so you can chain consoles, or feed a save node. It's a passthrough in spirit even though it's typed as STRING.
Install
ComfyUI Manager โ Nova Audio Player โ install โ restart. Or:
cd ComfyUI/custom_nodes
git clone https://github.com/NovaFemme/ComfyUI-NovaAudioPlayer.git
Then look under โถ๏ธ Nova Audio โ ๐ ๏ธ Utility & IO. Zero dependencies, no models, no downloads. It's pure display.
Where it goes in a workflow
The pack's example workflows all use it the same way, and it's worth copying the habit:
Nova ACE Setup Check ๐ฉบ โโ console โโโถ Nova Console ๐ฅ๏ธ
Nova ACE Dataset Builder ๐งฑ โโ console โโโถ Nova Console ๐ฅ๏ธ
Nova ACE LoRA Trainer ๐ โโ console โโโถ Nova Console ๐ฅ๏ธ
Nova Batch Load Audio ๐ผ โโ metadata โโโถ Nova Console ๐ฅ๏ธ (read the warnings)
Nova Tag Reader ๐ โโ console โโโถ Nova Console ๐ฅ๏ธ
This is the plumbing layer doing what it's for: the interesting nodes emit text, and one dumb node renders it without making you leave the canvas to read a log file. If a node in this pack did something you didn't expect - a truncated dataset, a set of tensors that got skipped, a tag that didn't land - the console output is where the answer is, and this is how you read it.
The one genuinely opinionated tip: put a label on it. When you've got four of these on a training graph and one of them is complaining, you'll thank yourself.
Inputs (4)
| Name | Type | Default | Description |
|---|---|---|---|
| value | * | Anything. Strings, numbers, NOVA_TABLE, NOVA_FILES, list outputs. | |
| labelopt | STRING | Printed above the value, to tell two consoles apart. | |
| print_to_server_logopt | BOOLEAN | true | Also write the text to the terminal ComfyUI is running in. |
| max_linesopt | INT | 00โ100000 | Trim the display to this many lines. 0 = show everything. |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| text | STRING | The rendered text, so you can chain another console or a save node. |