unrelated log messages that annoyed me in Vulkan: debug utils disabled is now debug, it being enabled is info

This commit is contained in:
Andreas Reich 2024-11-10 10:04:13 +01:00
parent d5f4db0c8f
commit e6a260ecd4

View File

@ -344,11 +344,11 @@ impl super::Instance {
callback_data: debug_utils_create_info.callback_data,
})
} else {
log::info!("Debug utils not enabled: extension not listed");
log::debug!("Debug utils not enabled: extension not listed");
None
}
} else {
log::info!(
log::debug!(
"Debug utils not enabled: \
debug_utils_user_data not passed to Instance::from_raw"
);