diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp index 31337da42..89b48f0e4 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp @@ -275,7 +275,7 @@ const GraphicsPipeline* PipelineCache::GetGraphicsPipeline() { const auto [it, is_new] = graphics_pipelines.try_emplace(graphics_key); if (is_new) { const auto pipeline_hash = std::hash{}(graphics_key); - LOG_INFO(Render, "Compiling graphics pipeline {:#x}", pipeline_hash); + LOG_INFO(Render_Vulkan, "Compiling graphics pipeline {:#x}", pipeline_hash); it.value() = std::make_unique(instance, scheduler, desc_heap, profile, graphics_key, *pipeline_cache, infos, @@ -299,7 +299,7 @@ const ComputePipeline* PipelineCache::GetComputePipeline() { const auto [it, is_new] = compute_pipelines.try_emplace(compute_key); if (is_new) { const auto pipeline_hash = std::hash{}(compute_key); - LOG_INFO(Render, "Compiling compute pipeline {:#x}", pipeline_hash); + LOG_INFO(Render_Vulkan, "Compiling compute pipeline {:#x}", pipeline_hash); it.value() = std::make_unique(instance, scheduler, desc_heap, profile,