diff options
author | McCabe Maxsted | 2012-02-18 00:30:01 -0700 |
---|---|---|
committer | McCabe Maxsted | 2012-02-18 00:30:01 -0700 |
commit | 3b31cc0894a6f253f919d65dec5cad000b2b3ec6 (patch) | |
tree | e8ba2c444f18384a130d99cbb26cf59d0c4184c1 /linden/indra/newview/llinventorymodel.cpp | |
parent | Merge remote-tracking branch 'armin/inventory-cap' into next (diff) | |
download | meta-impy-3b31cc0894a6f253f919d65dec5cad000b2b3ec6.zip meta-impy-3b31cc0894a6f253f919d65dec5cad000b2b3ec6.tar.gz meta-impy-3b31cc0894a6f253f919d65dec5cad000b2b3ec6.tar.bz2 meta-impy-3b31cc0894a6f253f919d65dec5cad000b2b3ec6.tar.xz |
Some debugging lines for inventory skeleton loading
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llinventorymodel.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linden/indra/newview/llinventorymodel.cpp b/linden/indra/newview/llinventorymodel.cpp index dc216e3..3f74965 100644 --- a/linden/indra/newview/llinventorymodel.cpp +++ b/linden/indra/newview/llinventorymodel.cpp | |||
@@ -2197,6 +2197,9 @@ bool LLInventoryModel::loadSkeleton(const LLInventoryModel::options_t& options, | |||
2197 | 2197 | ||
2198 | if (cit == temp_cats.end()) | 2198 | if (cit == temp_cats.end()) |
2199 | { | 2199 | { |
2200 | llwarns << "Can't load " << inventory_filename | ||
2201 | << " because cit == temp_cats.end()" | ||
2202 | << llendl; | ||
2200 | continue; // cache corruption?? not sure why this happens -SJB | 2203 | continue; // cache corruption?? not sure why this happens -SJB |
2201 | } | 2204 | } |
2202 | LLViewerInventoryCategory* tcat = *cit; | 2205 | LLViewerInventoryCategory* tcat = *cit; |
@@ -2205,6 +2208,9 @@ bool LLInventoryModel::loadSkeleton(const LLInventoryModel::options_t& options, | |||
2205 | // not sent down in the skeleton. | 2208 | // not sent down in the skeleton. |
2206 | if (cit == not_cached) | 2209 | if (cit == not_cached) |
2207 | { | 2210 | { |
2211 | llwarns << "Can't load " << inventory_filename | ||
2212 | << " because cit == not_cached" | ||
2213 | << llendl; | ||
2208 | continue; | 2214 | continue; |
2209 | } | 2215 | } |
2210 | 2216 | ||