The logger in EnvProxySearchStrategy.java does not report the correct information about https_proxy at line 111. I changed the test in the logger to match what the code actually does. Here is my change, before and after.
< Logger.log(getClass(), LogLevel.TRACE, "Https Proxy is {0}", httpsPS == null? this.httpsProxy: httpsPS);
---
> Logger.log(getClass(), LogLevel.TRACE, "Https Proxy is {0}", httpsPS != null ? this.httpsProxy: httpsPS);
Alistair