Remove some noisy tracing
This commit is contained in:
parent
2633e01929
commit
ec3424a905
1 changed files with 0 additions and 3 deletions
|
@ -1,6 +1,5 @@
|
||||||
use rustc_hir::def::CtorOf;
|
use rustc_hir::def::CtorOf;
|
||||||
use rustc_index::Idx;
|
use rustc_index::Idx;
|
||||||
use tracing::trace;
|
|
||||||
|
|
||||||
use crate::rmeta::*;
|
use crate::rmeta::*;
|
||||||
|
|
||||||
|
@ -530,8 +529,6 @@ where
|
||||||
{
|
{
|
||||||
/// Given the metadata, extract out the value at a particular index (if any).
|
/// Given the metadata, extract out the value at a particular index (if any).
|
||||||
pub(super) fn get<'a, 'tcx, M: Metadata<'a, 'tcx>>(&self, metadata: M, i: I) -> T::Value<'tcx> {
|
pub(super) fn get<'a, 'tcx, M: Metadata<'a, 'tcx>>(&self, metadata: M, i: I) -> T::Value<'tcx> {
|
||||||
trace!("LazyTable::lookup: index={:?} len={:?}", i, self.len);
|
|
||||||
|
|
||||||
// Access past the end of the table returns a Default
|
// Access past the end of the table returns a Default
|
||||||
if i.index() >= self.len {
|
if i.index() >= self.len {
|
||||||
return Default::default();
|
return Default::default();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue