Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed 'runner > mylog' problem.
Browse files Browse the repository at this point in the history
Runner will tell if verbose logging is switched on.
  • Loading branch information
mkauppila committed Aug 15, 2011
1 parent 0d820ad commit 7a7d668
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test-automation/src/runner/runner.c
Expand Up @@ -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);
Expand Down

0 comments on commit 7a7d668

Please sign in to comment.