Bug in the logging code for https_proxy in EnvProxySearchStrategy.java

16 views
Skip to first unread message

Alistair Mills

unread,
Feb 22, 2014, 1:17:56 PM2/22/14
to proxy...@googlegroups.com
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
Reply all
Reply to author
Forward
0 new messages