From 3709063354cd19c86b310227ed12c1097c221d45 Mon Sep 17 00:00:00 2001 From: Nicolas Silva Date: Thu, 28 Sep 2023 15:52:11 +0200 Subject: [PATCH] Update wgpu-core/src/device/global.rs Co-authored-by: Teodor Tanasoaia <28601907+teoxoy@users.noreply.github.com> --- wgpu-core/src/device/global.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-core/src/device/global.rs b/wgpu-core/src/device/global.rs index fea8877fdea..d839b3fdad8 100644 --- a/wgpu-core/src/device/global.rs +++ b/wgpu-core/src/device/global.rs @@ -2081,7 +2081,7 @@ impl Global { pub fn compute_pipeline_drop(&self, compute_pipeline_id: id::ComputePipelineId) { profiling::scope!("ComputePipeline::drop"); - log::debug!("ComputePipeline::drop {:?}", compute_pipeline_id); + log::trace!("ComputePipeline::drop {:?}", compute_pipeline_id); let hub = A::hub(self); let mut token = Token::root(); let (device_guard, mut token) = hub.devices.read(&mut token);