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

@ -53,7 +53,7 @@ class LogStdoutOutput : public LogFileStreamOutput {
LogStdoutOutput() : LogFileStreamOutput(stdout) {
set_config_string("all=off");
}
virtual bool initialize(const char* options) {
virtual bool initialize(const char* options, outputStream* errstream) {
return false;
}
public:
@ -69,7 +69,7 @@ class LogStderrOutput : public LogFileStreamOutput {
LogStderrOutput() : LogFileStreamOutput(stderr) {
set_config_string("all=warning");
}
virtual bool initialize(const char* options) {
virtual bool initialize(const char* options, outputStream* errstream) {
return false;
}
public: