8220786: Create new switch to redirect error reporting output to stdout or stderr

Reviewed-by: dholmes, goetz
This commit is contained in:
Thomas Stuefe 2019-03-25 09:35:40 +01:00
parent 4969d23b89
commit dbe0da648a
4 changed files with 144 additions and 11 deletions

View file

@ -1267,6 +1267,12 @@ define_pd_global(uint64_t,MaxRAM, 1ULL*G);
product(bool, DisplayVMOutputToStdout, false, \
"If DisplayVMOutput is true, display all VM output to stdout") \
\
product(bool, ErrorFileToStderr, false, \
"If true, error data is printed to stderr instead of a file") \
\
product(bool, ErrorFileToStdout, false, \
"If true, error data is printed to stdout instead of a file") \
\
product(bool, UseHeavyMonitors, false, \
"use heavyweight instead of lightweight Java monitors") \
\