rns-core 0.1.16

Wire protocol, transport routing, and link/resource engine for the Reticulum Network Stack
Documentation
1
2
3
4
5
6
7
8
9
10
//! Logging targets shared by protocol and runtime crates.

/// Target for path discovery, selection, forwarding and tunnel restoration.
///
/// Pathing records use `Trace` so a logger can expose them independently from
/// ordinary `Debug` records at Reticulum's numeric log level 7.
pub const PATHING_LOG_TARGET: &str = "rns::pathing";

/// Runtime level for gravity-driven path replacement diagnostics.
pub const GRAVITY_UPDATE_LOG_LEVEL: log::Level = log::Level::Trace;