From d9136dd934fd2140728278b632dd1790c6b6496a Mon Sep 17 00:00:00 2001 From: Fabian Meumertzheim Date: Sat, 3 Dec 2022 18:16:29 +0100 Subject: [PATCH] Remove debug print --- src/tools/launcher/util/launcher_util.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tools/launcher/util/launcher_util.cc b/src/tools/launcher/util/launcher_util.cc index 19ee1484583177..b4f256553d826b 100644 --- a/src/tools/launcher/util/launcher_util.cc +++ b/src/tools/launcher/util/launcher_util.cc @@ -106,7 +106,6 @@ bool DoesFilePathExist(const wchar_t* path) { bool res = (dwAttrib != INVALID_FILE_ATTRIBUTES && !(dwAttrib & FILE_ATTRIBUTE_DIRECTORY)); - PrintError(L"DoesFilePathExist: %ls -> %d", path, res); return res; }