This commit is contained in:
Henrik Rydgård 2021-09-11 18:53:46 +02:00
parent dc520a59d3
commit 07413aa4e3
3 changed files with 2 additions and 3 deletions

View file

@ -273,7 +273,7 @@ int64_t Android_ComputeRecursiveDirectorySize(const std::string &uri) {
int64_t size = env->CallLongMethod(g_nativeActivity, computeRecursiveDirectorySize, param);
double elapsed = time_now_d() - start;
ERROR_LOG(IO, "ComputeRecursiveDirectorySize(%s) in %0.3f s", uri.c_str(), elapsed);
INFO_LOG(IO, "ComputeRecursiveDirectorySize(%s) in %0.3f s", uri.c_str(), elapsed);
return size;
}

View file

@ -115,7 +115,6 @@ public:
FileSystemFlags Flags() override { return flags; }
u64 FreeSpace(const std::string &path) override;
// TODO: Replace with optimized implementation.
bool ComputeRecursiveDirSizeIfFast(const std::string &path, int64_t *size) override;
private:

View file

@ -2331,7 +2331,7 @@ static u32 sceIoDopen(const char *path) {
double listTime = time_now_d() - startTime;
if (listTime > 0.01) {
ERROR_LOG(IO, "Dir listing '%s' took %0.3f", path, listTime);
INFO_LOG(IO, "Dir listing '%s' took %0.3f", path, listTime);
}
// Blacklist some directories that games should not be able to find out about.