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
The tracing crate has support for logging named parameters, which wsts does not currently use. This makes the logs more explicit, and tracks how other crates use them.
So instead of
info!("Signer {} received DkgPublicShares", signer_id);
We could instead do
info!(%signer_d, "received DkgPublicShares");
The text was updated successfully, but these errors were encountered:
The
tracing
crate has support for logging named parameters, whichwsts
does not currently use. This makes the logs more explicit, and tracks how other crates use them.So instead of
We could instead do
The text was updated successfully, but these errors were encountered: