From 386fb6b057d44cd0ef260554bb6a314a662d94e7 Mon Sep 17 00:00:00 2001 From: Vighnesh Date: Mon, 4 Dec 2023 15:52:12 -0800 Subject: [PATCH] remove print logging --- tests/RequireByString.test.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tests/RequireByString.test.cpp b/tests/RequireByString.test.cpp index 5ff836cb..1fe57608 100644 --- a/tests/RequireByString.test.cpp +++ b/tests/RequireByString.test.cpp @@ -46,7 +46,6 @@ public: std::string getLuauDirectory(PathType type) { - printf("GetLuauDirectory invoked\n"); std::string luauDirRel = "."; std::string luauDirAbs; @@ -56,11 +55,9 @@ public: luauDirAbs = *cwd; for (int i = 0; i < 20; ++i) { - printf("Luau dir abs >>> %s\n", luauDirAbs.c_str()); if (isDirectory(luauDirAbs + "/luau/tests") || isDirectory(luauDirAbs + "/Client/Luau/tests")) { - printf("isDirectory /Luau/tests OR /Client/Luau/tests \n"); if (isDirectory(luauDirAbs + "/Client/Luau/tests")) { luauDirRel += "/Client"; @@ -77,20 +74,10 @@ public: luauDirRel += "/.."; std::optional parentPath = getParentPath(luauDirAbs); - if (parentPath) - { - printf("%s\n", (*parentPath).c_str()); - } - else - { - printf("Couldn't find parent path. LuauDirAbs: %s\n", luauDirAbs.c_str()); - } REQUIRE_MESSAGE(parentPath, "Error getting Luau path"); luauDirAbs = *parentPath; } - - // Could not find the directory REQUIRE_MESSAGE(false, "Error getting Luau path"); return {};