Remove some unnecessary logging. Fixes #10753

This commit is contained in:
Henrik Rydgård
2018-03-24 16:10:21 +01:00
parent 8fe5223dd0
commit 4f8e2adf76

View File

@@ -172,7 +172,6 @@ bool getFileInfo(const char *path, FileInfo *fileInfo) {
int result = stat64(copy.c_str(), &file_info);
#endif
if (result < 0) {
WLOG("IsDirectory: stat failed on %s", path);
fileInfo->exists = false;
return false;
}