We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e38c1a4 commit 16b61ceCopy full SHA for 16b61ce
1 file changed
crates/rustc_codegen_spirv/src/codegen_cx/constant.rs
@@ -367,7 +367,7 @@ impl<'tcx> CodegenCx<'tcx> {
367
}
368
369
pub fn create_const_alloc(&self, alloc: ConstAllocation<'tcx>, ty: Word) -> SpirvValue {
370
- tracing::debug!(
+ tracing::trace!(
371
"Creating const alloc of type {} with {} bytes",
372
self.debug_type(ty),
373
alloc.inner().len()
@@ -379,7 +379,7 @@ impl<'tcx> CodegenCx<'tcx> {
379
alloc.inner().len(),
380
"create_const_alloc must consume all bytes of an Allocation"
381
);
382
- tracing::debug!("Done creating alloc of type {}", self.debug_type(ty));
+ tracing::trace!("Done creating alloc of type {}", self.debug_type(ty));
383
result
384
385
0 commit comments