Log Helpers
Utility methods for reading and displaying config/input/output data during flow execution.
logConfig
Log a key-value config object in readable format.
await utils.logConfig(config, label?)| Param | Type | Default | Description |
|---|---|---|---|
config | Record<string, unknown> | — | Key-value object to log |
label | string | "Config" | Label for the log entry |
await utils.logConfig({ url: "https://example.com", retries: 3 });
await utils.logConfig(myData, "Custom Label");logProfileInput
Log the current profile input values for debugging.
await utils.logProfileInput();logProfileOutput
Log all current output values (including values from previous runs and newly written values).
await utils.logProfileOutput();logGlobalInput
Log the current global input values for debugging.
await utils.logGlobalInput();Last updated on