Function debug

Source
pub fn debug(message: &str)
Expand description

Logs a message at the DEBUG level.

By default, debug messages are hidden. They can be enabled by setting the RUST_LOG environment variable (e.g., RUST_LOG=debug).

ยงExample

use tincre_logger::logger;

// To see this message, run your application with `RUST_LOG=debug`
logger::debug("A verbose debug message for developers.");