//! Per-run logging infrastructure.
//!
//! This module provides types and utilities for organizing all logs from a single
//! pipeline run under a per-run directory (.agent/logs-<`run_id`>/).
//!
//! Key types:
//! - `RunId`: Unique timestamp-based identifier for each pipeline run
//! - `RunLogContext`: Manages log directory creation and path resolution
//! - `EventLoopLogger`: Records event loop execution for diagnosability
pub use create_run_dir_with_collision_handling;
pub use ;
pub use RunId;
pub use ;
pub use get_current_timestamp;