diff options
Diffstat (limited to 'indra/newview/llxmlrpctransaction.cpp')
-rw-r--r-- | indra/newview/llxmlrpctransaction.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llxmlrpctransaction.cpp b/indra/newview/llxmlrpctransaction.cpp index c2726997b2..cc8f955bc6 100644 --- a/indra/newview/llxmlrpctransaction.cpp +++ b/indra/newview/llxmlrpctransaction.cpp @@ -324,9 +324,9 @@ bool LLXMLRPCTransaction::Impl::process() if (curl_msg->data.result != CURLE_OK) { setCurlStatus(curl_msg->data.result); - llalerts << "LLXMLRPCTransaction CURL error " + llwarns << "LLXMLRPCTransaction CURL error " << mCurlCode << ": " << mCurlErrorBuffer << llendl; - llalerts << "LLXMLRPCTransaction request URI: " + llwarns << "LLXMLRPCTransaction request URI: " << mURI << llendl; return true; @@ -360,11 +360,11 @@ bool LLXMLRPCTransaction::Impl::process() { setStatus(LLXMLRPCTransaction::StatusXMLRPCError); - llalerts << "LLXMLRPCTransaction XMLRPC " + llwarns << "LLXMLRPCTransaction XMLRPC " << (hasError ? "error " : "fault ") << faultCode << ": " << faultString << llendl; - llalerts << "LLXMLRPCTransaction request URI: " + llwarns << "LLXMLRPCTransaction request URI: " << mURI << llendl; } |