Skip to main content

Mountain/Binary/Debug/
mod.rs

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