Plain logger logs the used command line options.

This commit is contained in:
Markus Kauppila 2011-07-12 23:53:57 +03:00
parent 022eceb59a
commit 4790fd63e3
2 changed files with 7 additions and 8 deletions

View file

@ -40,16 +40,15 @@ PlainRunStarted(int parameterCount, char *runnerParameters[], time_t eventTime,
void *data)
{
Output(indentLevel, "Test run started at %s", TimestampToString(eventTime));
Output(indentLevel, "");
/*
Output(indentLevel, "Runner: ");
Output(indentLevel, "Runner parameters: ");
int counter = 0;
for(counter = 0; counter < parameterCount; counter++) {
char *parameter = runnerParameters[counter];
Output(indentLevel, "\t%s", parameter);
}
*/
Output(indentLevel, "");
}
void