Static MESH_ENABLE_LOG_FORWARDING

Source
pub static MESH_ENABLE_LOG_FORWARDING: Key<bool>
Expand description

Enable forwarding child stdout/stderr over the mesh log channel.

When true (default): child stdio is piped; StreamFwder mirrors output to the parent console and forwards bytes to the log channel so a LogForwardActor can receive them.

When false: no channel forwarding occurs. Child stdio may still be piped if MESH_ENABLE_FILE_CAPTURE is true or MESH_TAIL_LOG_LINES > 0; otherwise the child inherits the parent stdio (no interception).

This flag does not affect console mirroring: child output always reaches the parent console—either via inheritance (no piping) or via StreamFwder when piping is active.