diff --git a/Tests/testrunner.cpp b/Tests/testrunner.cpp index c361facfc60eabba01b3b2d07f0d96aa35e0c8fe..55f70ce13860237383d24b1e3d9d4069446cd066 100644 --- a/Tests/testrunner.cpp +++ b/Tests/testrunner.cpp @@ -30,7 +30,11 @@ /// Implementation of the googletest testrunner int main(int argc, char* argv[]) { +#ifdef NDEBUG + std::string logLevel("info"); +#else std::string logLevel("all"); +#endif for (int i = 1; i < argc; i++) { if(i + 1 == argc)