mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Disable excessive logging
This commit is contained in:
parent
ee7e8d7c06
commit
919979eece
1 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@ bool ZipFileReader::GetFileListing(const char *orig_path, std::vector<File::File
|
|||
info.exists = true;
|
||||
info.isWritable = false;
|
||||
info.isDirectory = true;
|
||||
INFO_LOG(SYSTEM, "Found file: %s (%s)", info.name.c_str(), info.fullName.c_str());
|
||||
// INFO_LOG(SYSTEM, "Found file: %s (%s)", info.name.c_str(), info.fullName.c_str());
|
||||
listing->push_back(info);
|
||||
}
|
||||
|
||||
|
@ -138,7 +138,7 @@ bool ZipFileReader::GetFileListing(const char *orig_path, std::vector<File::File
|
|||
continue;
|
||||
}
|
||||
}
|
||||
INFO_LOG(SYSTEM, "Found dir: %s (%s)", info.name.c_str(), info.fullName.c_str());
|
||||
// INFO_LOG(SYSTEM, "Found dir: %s (%s)", info.name.c_str(), info.fullName.c_str());
|
||||
listing->push_back(info);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue