Mountain/Binary/Debug/
mod.rs

1//! # Debug
2//!
3//! Debug tracing infrastructure for the Mountain binary.
4//!
5//! ## RESPONSIBILITIES
6//!
7//! ### Module Organization
8//! - Export all debug-related modules
9//! - Provide TraceStep macro for execution tracking
10//!
11//! ## ARCHITECTURAL ROLE
12//!
13//! ### Position in Mountain
14//! - Top-level debug module in Binary subsystem
15//!
16//! ### Dependencies
17//! - log: Logging framework
18//!
19//! ### Dependents
20//! - All Binary subsystem modules requiring debug tracing
21//!
22//! ## SECURITY
23//!
24//! ### Considerations
25//! - All debug output is filtered by log level
26//!
27//! ## PERFORMANCE
28//!
29//! ### Considerations
30//! - Zero-cost when debug logging disabled
31
32pub mod TraceLog;