You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let span = span!(Level::INFO, "Job", name = job.name, version = job.version);
you could instead use instrument your functions with tracing::instrument - I'd also propose doing this in more places where there weren't spans created before.
The text was updated successfully, but these errors were encountered:
Rather than manually creating spans like in the following:
dragonfly-client-rs/src/main.rs
Line 54 in d3aa07f
you could instead use instrument your functions with
tracing::instrument
- I'd also propose doing this in more places where there weren't spans created before.The text was updated successfully, but these errors were encountered: