mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 02:24:40 +02:00
8146879: Add option for handling existing log files in UL
Reviewed-by: dsamersoff, gziemski, rehn
This commit is contained in:
parent
1afb9e9427
commit
8b2f63bd2b
15 changed files with 368 additions and 26 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue