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