mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxvk/d3d9] Adjust/remove several loggers
This commit is contained in:
parent
103ec0dfcb
commit
896afe47c3
2 changed files with 3 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue