diff --git a/Tests/LibJS/test262-runner.cpp b/Tests/LibJS/test262-runner.cpp index 47b000f6c6..a63763933d 100644 --- a/Tests/LibJS/test262-runner.cpp +++ b/Tests/LibJS/test262-runner.cpp @@ -584,7 +584,7 @@ int main(int argc, char** argv) } if (timeout <= 0) { - dbgln("timeout must be atleast 1"); + warnln("timeout must be atleast 1"); return 2; } @@ -671,7 +671,7 @@ int main(int argc, char** argv) auto file = Core::File::construct(path); if (!file->open(Core::OpenMode::ReadOnly)) { - dbgln("Could not open file: {}", path); + warnln("Could not open file: {}", path); return 3; }