log

Function log 

Source
pub fn log<T: Display>(message: T)
Expand description

Writes a log message to the default logger.

The default logger is a global mutable logger, so be careful when using it in a multithreaded environment. If you need to write logs from multiple threads, consider using a thread-local logger instead.

To set the default logger label, set the DEBUG_DEFAULT_LABEL environment variable.