8146879: Add option for handling existing log files in UL

Reviewed-by: dsamersoff, gziemski, rehn
This commit is contained in:
Marcus Larsson 2016-04-11 12:22:09 +02:00
parent 1afb9e9427
commit 8b2f63bd2b
15 changed files with 368 additions and 26 deletions

View file

@ -145,7 +145,7 @@ LogOutput* LogConfiguration::new_output(char* name, const char* options, outputS
return NULL;
}
bool success = output->initialize(options);
bool success = output->initialize(options, errstream);
if (!success) {
errstream->print_cr("Initialization of output '%s' using options '%s' failed.", name, options);
delete output;