Commit 516b5e80 authored by Markus Kauppila's avatar Markus Kauppila

Fixed 'runner > mylog' problem.

Runner will tell if verbose logging is switched on.
parent d5a4d0b8
......@@ -1368,7 +1368,11 @@ main(int argc, char *argv[])
if(log_stdout_enabled == 0) {
printf("Runner is executing the tests.\n");
if(enable_verbose_logger) {
printf("Logging level is set to verbose.\n");
}
printf("Test report is created to: %s\n", loggerData->filename);
fflush(stdout);
}
RunStarted(argc, argv, runSeed, time(0), loggerData);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment