log: Remove vulkan target
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 0s

This commit is contained in:
Florian RICHER 2024-11-17 15:40:30 +01:00
parent fc4a856048
commit 891835c4af
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
8 changed files with 52 additions and 50 deletions

View file

@ -1,4 +1,4 @@
use crate::vulkan::{VkInstance, VkPhysicalDevice, LOG_TARGET};
use crate::vulkan::{VkInstance, VkPhysicalDevice};
use ash::prelude::VkResult;
use ash::vk;
use std::sync::Arc;
@ -31,7 +31,7 @@ impl VkSurface {
)?
};
log::debug!(target: LOG_TARGET, "Surface created ({:?})", surface);
log::debug!("Surface created ({:?})", surface);
Ok(Self { instance, surface })
}
@ -88,6 +88,6 @@ impl Drop for VkSurface {
.surface_loader
.destroy_surface(self.surface, None);
}
log::debug!(target: LOG_TARGET, "Surface destroyed ({:?})", self.surface);
log::debug!("Surface destroyed ({:?})", self.surface);
}
}