[dxvk/d3d9] Adjust/remove several loggers

This commit is contained in:
WinterSnowfall 2025-03-05 00:04:24 +02:00
parent 103ec0dfcb
commit 896afe47c3
No known key found for this signature in database
2 changed files with 3 additions and 4 deletions

View file

@ -1160,7 +1160,6 @@ namespace dxvk {
case (DXVK_TSS_TCI_CAMERASPACEPOSITION >> TCIOffset):
transformed = vtx;
if (!applyTransform) {
Logger::warn(str::format("!applyTransform flags: ", flags, " projidx: ", projIndex));
count = 3;
projIndex = 4;
}

View file

@ -481,7 +481,7 @@ namespace dxvk {
std::ifstream ifile = openCacheFileForRead();
if (!ifile) {
Logger::warn("DXVK: No state cache file found");
Logger::debug("DXVK: No state cache file found");
return true;
}
@ -504,7 +504,7 @@ namespace dxvk {
// Notify user about format conversion
if (curHeader.version != newHeader.version)
Logger::warn(str::format("DXVK: Updating state cache version to v", newHeader.version));
Logger::info(str::format("DXVK: Updating state cache version to v", newHeader.version));
// Read actual cache entries from the file.
// If we encounter invalid entries, we should
@ -880,7 +880,7 @@ namespace dxvk {
return file;
if (recreate) {
Logger::warn("DXVK: Creating new state cache file");
Logger::info("DXVK: Creating new state cache file");
// Write header with the current version number
DxvkStateCacheHeader header;