We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
eprintln!
1 parent 53c4644 commit f2cf758Copy full SHA for f2cf758
compiler/rustc_ast/src/tokenstream.rs
@@ -139,7 +139,7 @@ impl fmt::Debug for LazyAttrTokenStream {
139
140
impl<S: SpanEncoder> Encodable<S> for LazyAttrTokenStream {
141
fn encode(&self, _s: &mut S) {
142
- eprintln!("ENCODING {self:?}");
+ tracing::debug!("ENCODING {self:?}");
143
self.to_attr_token_stream().encode(_s);
144
// panic!("Attempted to encode {self:?}");
145
}
@@ -149,7 +149,7 @@ impl<D: SpanDecoder> Decodable<D> for LazyAttrTokenStream {
149
fn decode(_d: &mut D) -> Self {
150
let ats = AttrTokenStream::decode(_d);
151
let res = LazyAttrTokenStream::new(ats);
152
- eprintln!("DECODED {res:?}");
+ tracing::debug!("DECODED {res:?}");
153
res
154
// panic!("Attempted to decode LazyAttrTokenStream");
155
0 commit comments