Debug
| Node | Description | Inputs | Outputs |
|---|---|---|---|
| assert | Errors if the condition is false, passes through value if true. | value Any, condition Boolean, message Text | value Any |
| inspect | Returns detailed type and structure information about a value. | value Any | report Json |
| log | Logs the input value and passes through. | value Any, label Text, toast Boolean | value Any, _label Text |
assert
Errors if the condition is false, passes through value if true.
Inputs:
value(Any) — value to pass throughcondition(Boolean) — must be true or node errorsmessage(Text) — error message on failure
Output: value (Any) — same value if assertion passes
inspect
Returns detailed type and structure information about a value.
Inputs:
value(Any) — value to inspect
Output: report (Json) — {type, value, length?, keys?}
log
Logs the input value and passes through.
Inputs:
value(Any) — value to log and pass throughlabel(Text) — optional label prefix for log outputtoast(Boolean) — also show a toast notification
Outputs:
value(Any) — same value, unchanged_label(Text) — resolved label string (internal, used by the log panel)