From ef351971d8c6b551625d8ad265d2810e368763b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= <rverschelde@gmail.com> Date: Mon, 17 Apr 2017 23:38:47 +0200 Subject: [PATCH] Drop EXEC PATHP?? super verbose info message It seems to give nightmares to Windows users. (cherry picked from commit dd55950b62a6b431fca1cb7438ff64ca2c77dbd7) --- platform/windows/os_windows.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index 37bfb68b7b3..799f426a9a7 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -1973,7 +1973,6 @@ String OS_Windows::get_executable_path() const { wchar_t bufname[4096]; GetModuleFileNameW(NULL, bufname, 4096); String s = bufname; - print_line("EXEC PATHP??: " + s); return s; }