Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 767 Bytes

File metadata and controls

31 lines (23 loc) · 767 Bytes

observe_log

Type: Observe

Reads declared input fields and writes them to the engine's logger. This is a read-only operator: it produces no output fields and does not modify the DataFrame. It is exempt from dead-code detection.

Parameters

Name Type Required Default Description
log_prefix string No "" Prefix prepended to each log line.

Metadata Contract

Field Typical Usage
CommonInput [<fields to observe>]
CommonOutput []
ItemInput [<fields to observe>]
ItemOutput []

DSL Usage

flow.observe_log(
    log_prefix=...,
    common_input=[...],
    item_input=[...],
    item_output=[...],
)