diff --git a/src/core/render/resources/texture/loader.rs b/src/core/render/resources/texture/loader.rs index 81acdc4..8d26862 100644 --- a/src/core/render/resources/texture/loader.rs +++ b/src/core/render/resources/texture/loader.rs @@ -53,14 +53,14 @@ impl TextureLoader { .as_ref() .map(|queue| { tracing::trace!( - "Selected transfer queue for texture loading with family index: {:?}", + "Select transfer queue for texture loading with family index: {:?}", queue.queue_family_index() ); queue.clone() }) .or_else(|| { tracing::trace!( - "Selected graphics queue for texture loading with family index: {:?}", + "Select graphics queue for texture loading with family index: {:?}", app_context.graphics_queue.queue_family_index() ); Some(app_context.graphics_queue.clone())