diff options
author | Rick Pasetto <rick@lindenlab.com> | 2009-10-05 17:56:33 -0700 |
---|---|---|
committer | Rick Pasetto <rick@lindenlab.com> | 2009-10-05 17:56:33 -0700 |
commit | 1658d77b865a9e139381a60c7a912ee3b949e69b (patch) | |
tree | 5517d8240c961cc413024b18c03b58f6f389f10d | |
parent | 6ef3f20933c5df684298bc1b8f338ce9dfd49070 (diff) |
DEV-40853: don't bring up a dialog on HTTP errors in the media service
-rw-r--r-- | indra/newview/llmediadataclient.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/indra/newview/llmediadataclient.cpp b/indra/newview/llmediadataclient.cpp index 6a932d76bf..54521ccb84 100644 --- a/indra/newview/llmediadataclient.cpp +++ b/indra/newview/llmediadataclient.cpp @@ -37,7 +37,6 @@ #include <boost/lexical_cast.hpp> #include "llhttpstatuscodes.h" -#include "llnotifications.h" #include "llsdutil.h" #include "llmediaentry.h" #include "lltextureentry.h" @@ -216,10 +215,7 @@ void LLMediaDataClient::Responder::error(U32 status, const std::string& reason) } else { std::string msg = boost::lexical_cast<std::string>(status) + ": " + reason; - LL_INFOS("LLMediaDataClient") << *mRequest << " error(" << msg << ")" << LL_ENDL; - LLSD args; - args["ERROR"] = msg; - LLNotifications::instance().add("ObjectMediaFailure", args); + LL_WARNS("LLMediaDataClient") << *mRequest << " http error(" << msg << ")" << LL_ENDL; } } |