From 516b5e80a746a4bd4fffdd2b076fe958ab44b598 Mon Sep 17 00:00:00 2001 From: Markus Kauppila Date: Mon, 15 Aug 2011 19:40:41 +0300 Subject: [PATCH] Fixed 'runner > mylog' problem. Runner will tell if verbose logging is switched on. --- test/test-automation/src/runner/runner.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test-automation/src/runner/runner.c b/test/test-automation/src/runner/runner.c index 2489e108f..22457685e 100644 --- a/test/test-automation/src/runner/runner.c +++ b/test/test-automation/src/runner/runner.c @@ -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);