Skip to content

Commit

Permalink
Demote info log to trace in wait_for_submit
Browse files Browse the repository at this point in the history
  • Loading branch information
nical committed Jul 31, 2024
1 parent e5945fd commit a4f1203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wgpu-core/src/device/resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3476,7 +3476,7 @@ impl<A: HalApi> Device<A> {
let fence = guard.as_ref().unwrap();
let last_done_index = unsafe { self.raw.as_ref().unwrap().get_fence_value(fence)? };
if last_done_index < submission_index {
log::info!("Waiting for submission {:?}", submission_index);
log::trace!("Waiting for submission {:?}", submission_index);
unsafe {
self.raw
.as_ref()
Expand Down

0 comments on commit a4f1203

Please sign in to comment.