Attribute Macro instrument_infallible

Source
#[instrument_infallible]
Expand description

Use this macro in place of tracing::instrument to prevent spamming our tracing table. Because this wraps around tracing::instrument, all parameters mentioned in https://fburl.com/9jlkb5q4 should be valid.

#[telemetry::instrument]
async fn yolo() -> i32 {
    420
}