Skip to content

Commit ec3424a

Browse files
committed
Remove some noisy tracing
1 parent 2633e01 commit ec3424a

File tree

1 file changed

+0
-3
lines changed
  • compiler/rustc_metadata/src/rmeta

1 file changed

+0
-3
lines changed

Diff for: compiler/rustc_metadata/src/rmeta/table.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use rustc_hir::def::CtorOf;
22
use rustc_index::Idx;
3-
use tracing::trace;
43

54
use crate::rmeta::*;
65

@@ -530,8 +529,6 @@ where
530529
{
531530
/// Given the metadata, extract out the value at a particular index (if any).
532531
pub(super) fn get<'a, 'tcx, M: Metadata<'a, 'tcx>>(&self, metadata: M, i: I) -> T::Value<'tcx> {
533-
trace!("LazyTable::lookup: index={:?} len={:?}", i, self.len);
534-
535532
// Access past the end of the table returns a Default
536533
if i.index() >= self.len {
537534
return Default::default();

0 commit comments

Comments
 (0)