diff options
| author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2018-01-17 03:58:24 +0200 | 
|---|---|---|
| committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2018-01-17 03:58:24 +0200 | 
| commit | 15c62d9e713eb1d51cc063c4ec2fed1d1f4ca59c (patch) | |
| tree | bbd0338a45d6fe58923f108399eaa6db91568420 /indra/llmessage | |
| parent | 4e808cfa852b873b484d0b9c90ab89ac196c3e52 (diff) | |
| parent | 57a99273ed023bd71c54399969e66ffc23eebc57 (diff) | |
Merged in lindenlab/viewer-bear
Diffstat (limited to 'indra/llmessage')
| -rw-r--r-- | indra/llmessage/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | indra/llmessage/llcorehttputil.cpp | 21 | 
2 files changed, 13 insertions, 12 deletions
| diff --git a/indra/llmessage/CMakeLists.txt b/indra/llmessage/CMakeLists.txt index 87bec60d95..e0922c0667 100644 --- a/indra/llmessage/CMakeLists.txt +++ b/indra/llmessage/CMakeLists.txt @@ -214,6 +214,7 @@ target_link_libraries(    ${JSONCPP_LIBRARIES}    ${OPENSSL_LIBRARIES}    ${CRYPTO_LIBRARIES} +  ${NGHTTP2_LIBRARIES}    ${XMLRPCEPI_LIBRARIES}    ${LLCOREHTTP_LIBRARIES}    ${BOOST_COROUTINE_LIBRARY} @@ -231,6 +232,7 @@ target_link_libraries(    ${JSONCPP_LIBRARIES}    ${OPENSSL_LIBRARIES}    ${CRYPTO_LIBRARIES} +  ${NGHTTP2_LIBRARIES}    ${XMLRPCEPI_LIBRARIES}    ${LLCOREHTTP_LIBRARIES}    ${BOOST_COROUTINE_LIBRARY} @@ -257,6 +259,7 @@ if (LINUX)      ${LLVFS_LIBRARIES}      ${LLMATH_LIBRARIES}      ${CURL_LIBRARIES} +    ${NGHTTP2_LIBRARIES}      ${LLCOMMON_LIBRARIES}      ${LLMESSAGE_LIBRARIES}      ${LLCOREHTTP_LIBRARIES} @@ -272,6 +275,7 @@ else (LINUX)      ${LLVFS_LIBRARIES}      ${LLMATH_LIBRARIES}      ${CURL_LIBRARIES} +    ${NGHTTP2_LIBRARIES}      ${LLCOMMON_LIBRARIES}      ${LLMESSAGE_LIBRARIES}      ${LLCOREHTTP_LIBRARIES} diff --git a/indra/llmessage/llcorehttputil.cpp b/indra/llmessage/llcorehttputil.cpp index 9bf38fb336..ac4b1310a4 100644 --- a/indra/llmessage/llcorehttputil.cpp +++ b/indra/llmessage/llcorehttputil.cpp @@ -84,7 +84,7 @@ void logMessageSuccess(std::string logAuth, std::string url, std::string message  void logMessageFail(std::string logAuth, std::string url, std::string message)  { -    LL_WARNS() << logAuth << " Failure '" << message << "' for " << url << LL_ENDL; +    LL_WARNS("CoreHTTP") << logAuth << " Failure '" << message << "' for " << url << LL_ENDL;  }  //========================================================================= @@ -279,12 +279,10 @@ void HttpCoroHandler::onCompleted(LLCore::HttpHandle handle, LLCore::HttpRespons          result = LLSD::emptyMap();          LLCore::HttpStatus::type_enum_t errType = status.getType(); -        LL_WARNS() -            << "\n--------------------------------------------------------------------------\n" -            << " Error[" << status.toTerseString() << "] cannot access url '" << response->getRequestURL() -            << "' because " << status.toString() -            << "\n--------------------------------------------------------------------------" -            << LL_ENDL; +        LL_WARNS("CoreHTTP") +            << " Error[" << status.toTerseString() << "] cannot "<< response->getRequestMethod()  +            << " to url '" << response->getRequestURL() +            << "' because " << status.toString() << LL_ENDL;          if ((errType >= 400) && (errType < 500))          {              LLSD body = this->parseBody(response, parseSuccess); @@ -299,7 +297,6 @@ void HttpCoroHandler::onCompleted(LLCore::HttpHandle handle, LLCore::HttpRespons                      result = body;                  }              } -          }      }      else @@ -323,7 +320,7 @@ void HttpCoroHandler::onCompleted(LLCore::HttpHandle handle, LLCore::HttpRespons          if (getBoolSetting(HTTP_LOGBODY_KEY))          {              // commenting out, but keeping since this can be useful for debugging -            LL_WARNS() << "Returned body=" << std::endl << httpStatus["error_body"].asString() << LL_ENDL; +            LL_WARNS("CoreHTTP") << "Returned body=" << std::endl << httpStatus["error_body"].asString() << LL_ENDL;          }      } @@ -423,7 +420,7 @@ LLSD HttpCoroLLSDHandler::handleSuccess(LLCore::HttpResponse * response, LLCore:          if (contentType && (HTTP_CONTENT_LLSD_XML == *contentType))          {              std::string thebody = LLCoreHttpUtil::responseToString(response); -            LL_WARNS() << "Failed to deserialize . " << response->getRequestURL() << " [status:" << response->getStatus().toString() << "] " +            LL_WARNS("CoreHTTP") << "Failed to deserialize . " << response->getRequestURL() << " [status:" << response->getStatus().toString() << "] "                  << " body: " << thebody << LL_ENDL;              // Replace the status with a new one indicating the failure. @@ -442,7 +439,7 @@ LLSD HttpCoroLLSDHandler::handleSuccess(LLCore::HttpResponse * response, LLCore:          if (contentType && (HTTP_CONTENT_LLSD_XML == *contentType))          {              std::string thebody = LLCoreHttpUtil::responseToString(response); -            LL_WARNS() << "Failed to deserialize . " << response->getRequestURL() << " [status:" << response->getStatus().toString() << "] " +            LL_WARNS("CoreHTTP") << "Failed to deserialize . " << response->getRequestURL() << " [status:" << response->getStatus().toString() << "] "                  << " body: " << thebody << LL_ENDL;              // Replace the status with a new one indicating the failure. @@ -1210,7 +1207,7 @@ LLSD HttpCoroutineAdapter::buildImmediateErrorResult(const LLCore::HttpRequest::      const std::string &url)   {      LLCore::HttpStatus status = request->getStatus(); -    LL_WARNS() << "Error posting to " << url << " Status=" << status.getStatus() << +    LL_WARNS("CoreHTTP") << "Error posting to " << url << " Status=" << status.getStatus() <<          " message = " << status.getMessage() << LL_ENDL;      // Mimic the status results returned from an http error that we had  | 
