Interface: DispatchExecutorLogEntry
Defined in: lib/types/dispatch_runner.ts:160
Per-call structured payload for DispatchExecutorLogChannel.
Remarks
kind is a short, stable discriminator the executor authored — observability middleware matches on it to filter / group / aggregate events without parsing the human-readable message. payload is the structured detail block; it is delivered to subscribers verbatim (the runner never inspects it).
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
kind | string | Stable discriminator authored by the executor (e.g. 'retry-attempt', 'http-error'). | lib/types/dispatch_runner.ts:162 |
message | string | Human-readable message — safe to surface in logs or test failure output. | lib/types/dispatch_runner.ts:164 |
payload? | Record<string, unknown> | Optional structured detail block. Delivered to subscribers verbatim. | lib/types/dispatch_runner.ts:166 |