diff options
author | AndreyL ProductEngine <none@none> | 2018-02-12 21:15:00 +0200 |
---|---|---|
committer | AndreyL ProductEngine <none@none> | 2018-02-12 21:15:00 +0200 |
commit | e6765df1baa40a46b77e5362c8855a336125e5f7 (patch) | |
tree | ffb3564aaa95b23f0d7ab6f6eeea8d08f3e9b317 /indra/llmessage/llcorehttputil.cpp | |
parent | b0950991988ddd56bec9074316d883a00b0cae4c (diff) | |
parent | 02342cb9ae3140cb49ec2818fee5692b3796bf8a (diff) |
Merged in lindenlab/viewer-bear
Diffstat (limited to 'indra/llmessage/llcorehttputil.cpp')
-rw-r--r-- | indra/llmessage/llcorehttputil.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/indra/llmessage/llcorehttputil.cpp b/indra/llmessage/llcorehttputil.cpp index ac4b1310a4..24387fbffd 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("CoreHTTP") << logAuth << " Failure '" << message << "' for " << url << LL_ENDL; + LL_INFOS("CoreHTTP") << logAuth << " Possible failure '" << message << "' for " << url << LL_ENDL; } //========================================================================= @@ -279,10 +279,11 @@ void HttpCoroHandler::onCompleted(LLCore::HttpHandle handle, LLCore::HttpRespons result = LLSD::emptyMap(); LLCore::HttpStatus::type_enum_t errType = status.getType(); - LL_WARNS("CoreHTTP") - << " Error[" << status.toTerseString() << "] cannot "<< response->getRequestMethod() - << " to url '" << response->getRequestURL() - << "' because " << status.toString() << LL_ENDL; + LL_INFOS() + << "Possible failure [" << status.toTerseString() << "] cannot "<< response->getRequestMethod() + << " url '" << response->getRequestURL() + << "' because " << status.toString() + << LL_ENDL; if ((errType >= 400) && (errType < 500)) { LLSD body = this->parseBody(response, parseSuccess); |