Settings
Help

info_report

Macro info_report 

Source
macro_rules! info_report {
    ($err:expr) => { ... };
    ($err:expr, $($rest:tt)*) => { ... };
}
Available on crate feature tracing only.
Expand description

Log a report for err at level INFO (or higher if it is a bug).

§Examples:

use tor_error::info_report;
info_report!(err, "Cheese exhausted (ephemeral)");
info_report!(err, "Unable to parse message {:?}", msg);