From 4f8e2adf769fcacfb7eb4559ab156c8a2e094e06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sat, 24 Mar 2018 16:10:21 +0100 Subject: [PATCH] Remove some unnecessary logging. Fixes #10753 --- ext/native/file/file_util.cpp | 1 - 1 file changed, 1 deletion(-) 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; }