error_async

Macro error_async 

Source
error_async!() { /* proc-macro */ }
Expand description

Asynchronous error-level logging (all builds).

Async variant of error_sync!. Active in release builds.

async fn example() {
    logwise::error_async!("API failed: {error}", error="timeout");
}