macro_rules! info_report {
($err:expr, $($rest:expr),+ $(,)?) => { ... };
}
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);