Skip to content

Commit 16b61ce

Browse files
committed
Another debug -> trace
1 parent e38c1a4 commit 16b61ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/rustc_codegen_spirv/src/codegen_cx/constant.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ impl<'tcx> CodegenCx<'tcx> {
367367
}
368368

369369
pub fn create_const_alloc(&self, alloc: ConstAllocation<'tcx>, ty: Word) -> SpirvValue {
370-
tracing::debug!(
370+
tracing::trace!(
371371
"Creating const alloc of type {} with {} bytes",
372372
self.debug_type(ty),
373373
alloc.inner().len()
@@ -379,7 +379,7 @@ impl<'tcx> CodegenCx<'tcx> {
379379
alloc.inner().len(),
380380
"create_const_alloc must consume all bytes of an Allocation"
381381
);
382-
tracing::debug!("Done creating alloc of type {}", self.debug_type(ty));
382+
tracing::trace!("Done creating alloc of type {}", self.debug_type(ty));
383383
result
384384
}
385385

0 commit comments

Comments
 (0)