Fixed 'runner > mylog' problem.
Runner will tell if verbose logging is switched on.
This commit is contained in:
parent
d5a4d0b8bd
commit
516b5e80a7
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue