We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
new_revision
evict_lru
1 parent 393cf7c commit 10c8265Copy full SHA for 10c8265
src/zalsa.rs
@@ -355,6 +355,7 @@ impl Zalsa {
355
#[doc(hidden)]
356
pub fn new_revision(&mut self) -> Revision {
357
let new_revision = self.runtime.new_revision();
358
+ let _span = tracing::debug_span!("new_revision", ?new_revision).entered();
359
360
for (_, index) in self.ingredients_requiring_reset.iter() {
361
let index = index.as_usize();
@@ -372,6 +373,7 @@ impl Zalsa {
372
373
/// **NOT SEMVER STABLE**
374
375
pub fn evict_lru(&mut self) {
376
+ let _span = tracing::debug_span!("evict_lru").entered();
377
378
379
self.ingredients_vec
0 commit comments