diff --git a/ext/native/file/file_util.cpp b/ext/native/file/file_util.cpp index 270ebeb7ef..be654ef9c3 100644 --- a/ext/native/file/file_util.cpp +++ b/ext/native/file/file_util.cpp @@ -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; }