diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-04-16 16:06:34 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-04-16 16:06:34 -0400 |
commit | 142f867d38060d3525dcab1cdd170836e1981ec1 (patch) | |
tree | 17e1c7fcb05b6af3f3bd07dcaeea8f11c66ef614 /indra/newview/llappviewer.cpp | |
parent | 04cfcd1edca32090548960135e7de13b001aa908 (diff) |
For EXT-6809 - search static VFS for all asset types
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index f19a33301a..7895cee4ec 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -3238,6 +3238,13 @@ bool LLAppViewer::initCache() else { LLVFile::initClass(); + + llinfos << "Static VFS listing" << llendl; + gStaticVFS->listFiles(); + + llinfos << "regular VFS listing" << llendl; + gVFS->listFiles(); + return true; } } |