summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorymodel.cpp
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2020-08-20 19:26:52 +0300
committerMnikolenko Productengine <mnikolenko@productengine.com>2020-08-20 19:26:52 +0300
commitbb5771fd3ec12ab17e589562448dcc6c15245aa4 (patch)
tree7a4955dfebacc9b9e6c327c50ee55a8accb707a0 /indra/newview/llinventorymodel.cpp
parenta9885029cf42ee42d6f8aa4e958a1ad9cc5e98b2 (diff)
SL-13669 use warnings for inventory cache failures
Diffstat (limited to 'indra/newview/llinventorymodel.cpp')
-rw-r--r--indra/newview/llinventorymodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp
index c86a9a40d3..b37ebde4ec 100644
--- a/indra/newview/llinventorymodel.cpp
+++ b/indra/newview/llinventorymodel.cpp
@@ -2714,7 +2714,7 @@ bool LLInventoryModel::loadFromFile(const std::string& filename,
std::istringstream iss(line);
if (parser->parse(iss, s_item, line.length()) == LLSDParser::PARSE_FAILURE)
{
- LL_INFOS(LOG_INV)<< "Parsing inventory cache failed" << LL_ENDL;
+ LL_WARNS(LOG_INV)<< "Parsing inventory cache failed" << LL_ENDL;
break;
}
@@ -2729,7 +2729,7 @@ bool LLInventoryModel::loadFromFile(const std::string& filename,
}
else
{
- LL_INFOS(LOG_INV)<< "Inventory cache is out of date" << LL_ENDL;
+ LL_WARNS(LOG_INV)<< "Inventory cache is out of date" << LL_ENDL;
break;
}
}