rns_core/logging.rs
1//! Logging targets shared by protocol and runtime crates.
2
3/// Target for path discovery, selection, forwarding and tunnel restoration.
4///
5/// Pathing records use `Trace` so a logger can expose them independently from
6/// ordinary `Debug` records at Reticulum's numeric log level 7.
7pub const PATHING_LOG_TARGET: &str = "rns::pathing";
8
9/// Runtime level for gravity-driven path replacement diagnostics.
10pub const GRAVITY_UPDATE_LOG_LEVEL: log::Level = log::Level::Trace;