diff options
author | Nyx (Neal Orman) <nyx@lindenlab.com> | 2010-11-04 17:50:10 -0400 |
---|---|---|
committer | Nyx (Neal Orman) <nyx@lindenlab.com> | 2010-11-04 17:50:10 -0400 |
commit | a2b25828aa3f5deb5d0e7c15ac167abb32a5e81e (patch) | |
tree | e7a33e6fafef754a72b4471afa6259993f9d0050 /indra/llmessage/llcurl.cpp | |
parent | fefae4c63902e7db9d71d905bd1ab597fc3a0526 (diff) |
BUILDFIX curl error causes linux build to crash on login.
Switching curl errors from llerrs to llinfos allows the client to continue
on its merry way. Will file a jira to follow up later on why the error
happens in the first place.
Diffstat (limited to 'indra/llmessage/llcurl.cpp')
-rw-r--r-- | indra/llmessage/llcurl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp index 66f1ffd41b..91ef9510a8 100644 --- a/indra/llmessage/llcurl.cpp +++ b/indra/llmessage/llcurl.cpp @@ -89,7 +89,7 @@ void check_curl_code(CURLcode code) { if (code != CURLE_OK) { - llerrs << "curl error detected: " << curl_easy_strerror(code) << llendl; + llinfos << "curl error detected: " << curl_easy_strerror(code) << llendl; } } @@ -97,7 +97,7 @@ void check_curl_multi_code(CURLMcode code) { if (code != CURLM_OK) { - llerrs << "curl multi error detected: " << curl_multi_strerror(code) << llendl; + llinfos << "curl multi error detected: " << curl_multi_strerror(code) << llendl; } } |