// Copyright 2026-Present Datadog, Inc. https://www.datadoghq.com/
// SPDX-License-Identifier: Apache-2.0
//! Log-output capability trait.
//!
//! Lets the trace pipeline emit already-encoded log-exporter output to the
//! platform's log sink. On native targets this writes to process stdout; a wasm
//! consumer implements it by handing the bytes to the host (e.g. JavaScript),
//! since wasm cannot write to stdout directly.
/// Capability for writing encoded log-exporter output to the platform log sink.