Skip to content

Log Display

The Log display component streams the execution logs of any runnable straight into an app. Point it at a Job ID — typically forwarded from the script or flow you want to observe — and it renders that run’s logs live, so operators can watch a background job progress without leaving the app.

NameTypeConnectableTemplatableDefaultDescription
Job IdstringtruefalseThe job id of the run whose logs should be displayed

The Log display component exposes three output properties:

NameTypeDescription
resultstringThe result of the runnable execution
loadingbooleanCurrent loading state of the component
Job IdstringThe job id of the run displaying logs
  • Connectable Job ID: wire the Job Id field to another component’s output or a runnable’s result, so the log view follows whichever job just started.
  • Loading state: the loading output flips while logs are still being fetched, so you can show a spinner or placeholder.
  • Result capture: once the job finishes, its result is exposed on the result output for other components to consume.

See the app editor and your first app pages for how components fit into an app, and Jobs and runs for what a Job ID is and how job logs work.