Lower the tracing level of some very verbose messages
This commit is contained in:
parent
3266c36624
commit
f8b5e0064b
2 changed files with 3 additions and 3 deletions
|
@ -439,7 +439,7 @@ 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).
|
||||||
#[inline(never)]
|
#[inline(never)]
|
||||||
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> {
|
||||||
debug!("LazyTable::lookup: index={:?} len={:?}", i, self.encoded_size);
|
trace!("LazyTable::lookup: index={:?} len={:?}", i, self.encoded_size);
|
||||||
|
|
||||||
let start = self.position.get();
|
let start = self.position.get();
|
||||||
let bytes = &metadata.blob()[start..start + self.encoded_size];
|
let bytes = &metadata.blob()[start..start + self.encoded_size];
|
||||||
|
|
|
@ -1288,7 +1288,7 @@ pub fn decode_expn_id(
|
||||||
decode_data: impl FnOnce(ExpnId) -> (ExpnData, ExpnHash),
|
decode_data: impl FnOnce(ExpnId) -> (ExpnData, ExpnHash),
|
||||||
) -> ExpnId {
|
) -> ExpnId {
|
||||||
if index == 0 {
|
if index == 0 {
|
||||||
debug!("decode_expn_id: deserialized root");
|
trace!("decode_expn_id: deserialized root");
|
||||||
return ExpnId::root();
|
return ExpnId::root();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1321,7 +1321,7 @@ pub fn decode_syntax_context<D: Decoder, F: FnOnce(&mut D, u32) -> SyntaxContext
|
||||||
) -> SyntaxContext {
|
) -> SyntaxContext {
|
||||||
let raw_id: u32 = Decodable::decode(d);
|
let raw_id: u32 = Decodable::decode(d);
|
||||||
if raw_id == 0 {
|
if raw_id == 0 {
|
||||||
debug!("decode_syntax_context: deserialized root");
|
trace!("decode_syntax_context: deserialized root");
|
||||||
// The root is special
|
// The root is special
|
||||||
return SyntaxContext::root();
|
return SyntaxContext::root();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue