Skip to main content

Mountain/Binary/Debug/
mod.rs

1
2//! # Binary::Debug
3//!
4//! Debug tracing infrastructure for the Mountain binary.
5//! Exports the `TraceLog` module which provides the `TraceStep!` macro
6//! for annotated execution-path logging; all output is gated behind the
7//! active log level and compiles to a no-op in release builds.
8
9/// Execution-path trace logging macro and supporting utilities.
10pub mod TraceLog;
11
12#[cfg(debug_assertions)]
13pub mod WebkitServer;