Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redirect testclusters ES process stdout/stderr to log file (elastic#8…
…5349) (elastic#85350) Although most of the time the stdout and stderr of the Java process is not needed since ES has its own log file, there are some cases where it is very important to have the output before ES has initialized its logging system. This commit changes the stdout/stderr of the ES process created by testclusters to use the same log file that ES will write to. There should not be contention with ProcessBuilder and ES trying to write at the same time because ES swaps out the stream handles to write to its logging system, so after that point ProcessBuilder will never see anymore output. relates elastic#68333
- Loading branch information