diff options
author | prep <prep@lindenlab.com> | 2011-11-17 17:33:49 -0500 |
---|---|---|
committer | prep <prep@lindenlab.com> | 2011-11-17 17:33:49 -0500 |
commit | 38b7f033b28027711a03e5a28d6ea384be909318 (patch) | |
tree | 76b76b4def34386dff655abf7d60dbabe3219d26 /indra/newview | |
parent | 378c076d1df5d911e07959638fbd61a9094384d2 (diff) |
navmeshdata is now parsed as binary
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llnavmeshstation.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/llnavmeshstation.cpp b/indra/newview/llnavmeshstation.cpp index 6f491c34c9..2f7e62b8ae 100644 --- a/indra/newview/llnavmeshstation.cpp +++ b/indra/newview/llnavmeshstation.cpp @@ -105,14 +105,13 @@ public: if ( content.has("error") )
{
llwarns << "Error on fetched data"<< llendl;
+ llinfos<<"LLsd buffer on error"<<ll_pretty_print_sd(content)<<llendl;
}
else
{
LLNavMeshDownloadObserver* pObserver = mObserverHandle.get();
if ( pObserver )
{
- llinfos<<"Do something immensely important w/content"<<llendl;
- llinfos<<"LLsd buffer"<<ll_pretty_print_sd(content)<<llendl;
if ( content.has("navmesh_data") )
{
@@ -125,7 +124,7 @@ public: }
}
}
- }
+}
private:
//Observer handle
|