Skip to content

Commit

Permalink
Remove unnecessary logging
Browse files Browse the repository at this point in the history
  • Loading branch information
qinsoon authored Oct 31, 2023
1 parent 7273a15 commit 588c5ab
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/policy/lockfreeimmortalspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,9 @@ impl<VM: VMBinding> Space<VM> for LockFreeImmortalSpace<VM> {
if start + bytes > self.limit {
panic!("OutOfMemory")
}
trace!("Going to zero");
if self.slow_path_zeroing {
crate::util::memory::zero(start, bytes);
}
trace!("Going to zero - done");
start
}

Expand Down

0 comments on commit 588c5ab

Please sign in to comment.