Demote a log print to a debug log

This commit is contained in:
baldurk
2018-04-03 17:10:26 +01:00
parent 1e3c827edc
commit 378c5d928e
@@ -525,8 +525,8 @@ VkResult WrappedVulkan::vkCreateGraphicsPipelines(VkDevice device, VkPipelineCac
VkResourceRecord *baserecord = GetRecord(pCreateInfos[i].basePipelineHandle);
record->AddParent(baserecord);
RDCLOG("Creating pipeline %llu base is %llu", record->GetResourceID(),
baserecord->GetResourceID());
RDCDEBUG("Creating pipeline %llu base is %llu", record->GetResourceID(),
baserecord->GetResourceID());
}
else if(pCreateInfos[i].basePipelineIndex != -1 && pCreateInfos[i].basePipelineIndex < (int)i)
{