diff options
author | Oz Linden <oz@lindenlab.com> | 2016-07-28 13:19:34 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2016-07-28 13:19:34 -0400 |
commit | ba93f428e363eaeba99b8567724e675a2f4a867f (patch) | |
tree | c86e7bbc0bc528a0d69199858038b40a244b0f06 /indra/llcorehttp | |
parent | 4d50399370b412057fd654fc4a686b8bfed3c489 (diff) |
correct cut/paste error for setting PO_HTTP_PROXY, and add logging
Diffstat (limited to 'indra/llcorehttp')
-rw-r--r-- | indra/llcorehttp/_httppolicyglobal.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/llcorehttp/_httppolicyglobal.cpp b/indra/llcorehttp/_httppolicyglobal.cpp index 3d0df96ade..8da6cba6d0 100644 --- a/indra/llcorehttp/_httppolicyglobal.cpp +++ b/indra/llcorehttp/_httppolicyglobal.cpp @@ -88,15 +88,18 @@ HttpStatus HttpPolicyGlobal::set(HttpRequest::EPolicyOption opt, const std::stri switch (opt) { case HttpRequest::PO_CA_PATH: + LL_DEBUGS("CoreHttp") << "Setting global CA Path to " << value << LL_ENDL; mCAPath = value; break; case HttpRequest::PO_CA_FILE: + LL_DEBUGS("CoreHttp") << "Setting global CA File to " << value << LL_ENDL; mCAFile = value; break; case HttpRequest::PO_HTTP_PROXY: - mCAFile = value; + LL_DEBUGS("CoreHttp") << "Setting global Proxy to " << value << LL_ENDL; + mHttpProxy = value; break; default: |