Skip to content
Snippets Groups Projects
Commit 87c59354 authored by Tom Fischer's avatar Tom Fischer Committed by Lars Bilke
Browse files

Release mode testrunner outputs only messages with info level.

parent ef3ad8f0
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment