a3s_box_runtime/log.rs
1//! Log path helpers.
2//!
3//! The log PROCESSOR moved to [`a3s_box_core::log`] and now runs in the SHIM —
4//! the box's lifetime process — so a detached `run -d` box's logs are not
5//! truncated when the launching CLI exits (the processor used to be a
6//! `spawn_blocking` task in the ephemeral CLI). This module re-exports the parts
7//! the CLI still needs to locate and read the structured log file.
8
9pub use a3s_box_core::log::{is_runtime_console_noise, json_log_path};