diff options
author | Steven Bennetts <steve@lindenlab.com> | 2009-09-23 21:08:50 +0000 |
---|---|---|
committer | Steven Bennetts <steve@lindenlab.com> | 2009-09-23 21:08:50 +0000 |
commit | 8a9204596af763d618ec6e67a5289b4799e1a1e2 (patch) | |
tree | 5208570d9bea1084950d9c1a9579b2c7ba8d3e07 | |
parent | 5433dbee39988fdbe3f2f99510d1a136d5cd61c8 (diff) |
Partial fix for EXT-1123 (this shouldn't merit a notification), but we should investigate why these requests are failing in the first place.
-rw-r--r-- | indra/newview/lllandmarklist.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/indra/newview/lllandmarklist.cpp b/indra/newview/lllandmarklist.cpp index 318344f9ef..8e331fa71d 100644 --- a/indra/newview/lllandmarklist.cpp +++ b/indra/newview/lllandmarklist.cpp @@ -128,14 +128,16 @@ void LLLandmarkList::processGetAssetReply( else { LLViewerStats::getInstance()->incStat( LLViewerStats::ST_DOWNLOAD_FAILED ); - + // SJB: No use case for a notification here. Use lldebugs instead if( LL_ERR_ASSET_REQUEST_NOT_IN_DATABASE == status ) { - LLNotifications::instance().add("LandmarkMissing"); + LL_DEBUGS("Landmarks") << "Missing Landmark" << LL_ENDL; + //LLNotifications::instance().add("LandmarkMissing"); } else { - LLNotifications::instance().add("UnableToLoadLandmark"); + LL_DEBUGS("Landmarks") << "Unable to load Landmark" << LL_ENDL; + //LLNotifications::instance().add("UnableToLoadLandmark"); } gLandmarkList.mBadList.insert(uuid); |