Drop EXEC PATHP?? super verbose info message

It seems to give nightmares to Windows users.

(cherry picked from commit dd55950b62)
This commit is contained in:
Rémi Verschelde 2017-04-17 23:38:47 +02:00
parent 6b0c384f79
commit ef351971d8

View File

@ -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;
}