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
will include the biscuit debug output in the traces & logs.
Note: This can be avoided by ignoring the biscuit using #[tracing::instrument(skip(biscuit))], but this is quite fragile (easy to forget the skip option).
Note: Display impl was introduced by #117
The text was updated successfully, but these errors were encountered:
Debug & Display Trait are very verbose by default.
This can easily lead to leaks of biscuit content in logs, for example if a biscuit is passed to an instrumented function with the
tracing
crate.For example:
will include the biscuit debug output in the traces & logs.
Note: This can be avoided by ignoring the
biscuit
using#[tracing::instrument(skip(biscuit))]
, but this is quite fragile (easy to forget theskip
option).Note:
Display
impl was introduced by #117The text was updated successfully, but these errors were encountered: