Macro rak_rs::rakrs_debug

source ·
macro_rules! rakrs_debug {
    ($heavy: ident, $($t: tt)*) => { ... };
    ($($t: tt)*) => { ... };
}
Expand description

A wrapper for println that is enabled only with the features debug, debug_all, or debug_features.

  • debug - Enables generic logging, purposeful for debugging things going wrong with your implementation
  • debug_all - Enables logging of all components, IE, connection, packets, etc.
  • debug_buffers - Enables logging of all buffers sent and received.