diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-04-12 19:13:32 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-04-12 19:13:41 +0300 |
commit | 8b1a7085be07704a58e169d1133fc356a1745c74 (patch) | |
tree | 58c700c039aaf51a8baabc82ce3b3936de847b10 /indra/newview/llinventorymodelbackgroundfetch.cpp | |
parent | bdd4cb5963df9550eb8e9c0bca0eff0010b44b1e (diff) |
SL-19533 Logging tag change
Diffstat (limited to 'indra/newview/llinventorymodelbackgroundfetch.cpp')
-rw-r--r-- | indra/newview/llinventorymodelbackgroundfetch.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llinventorymodelbackgroundfetch.cpp b/indra/newview/llinventorymodelbackgroundfetch.cpp index 69f688d51e..f650cc383f 100644 --- a/indra/newview/llinventorymodelbackgroundfetch.cpp +++ b/indra/newview/llinventorymodelbackgroundfetch.cpp @@ -461,7 +461,7 @@ void LLInventoryModelBackgroundFetch::incrFetchFolderCount(S32 fetching) void ais_simple_item_callback(const LLUUID& inv_id) { - LL_DEBUGS("AIS3") << "Response for " << inv_id << LL_ENDL; + LL_DEBUGS(LOG_INV , "AIS3") << "Response for " << inv_id << LL_ENDL; LLInventoryModelBackgroundFetch::instance().incrFetchCount(-1); } @@ -488,7 +488,7 @@ void LLInventoryModelBackgroundFetch::onAISFolderCalback(const LLUUID &request_i if (response_id.isNull()) // Failure { - LL_DEBUGS("AIS3") << "Failure response for folder " << request_id << LL_ENDL; + LL_DEBUGS(LOG_INV , "AIS3") << "Failure response for folder " << request_id << LL_ENDL; if (recursion == FT_RECURSIVE) { // A full recursive request failed. @@ -521,7 +521,7 @@ void LLInventoryModelBackgroundFetch::onAISFolderCalback(const LLUUID &request_i } else { - LL_DEBUGS("AIS3") << "Got folder " << request_id << LL_ENDL; + LL_DEBUGS(LOG_INV , "AIS3") << "Got folder " << request_id << LL_ENDL; if (recursion == FT_CONTENT_RECURSIVE) { // Got the folder, now recursively request content @@ -611,7 +611,7 @@ void LLInventoryModelBackgroundFetch::bulkFetchViaAis() if (!mExpectedFolderIds.empty()) { // A folder seem to be stack fetching on QA account, print oldest folder out - LL_DEBUGS("AIS3") << "Oldest expected folder: "; + LL_DEBUGS(LOG_INV , "AIS3") << "Oldest expected folder: "; std::list<LLUUID>::const_iterator iter = mExpectedFolderIds.begin(); LL_CONT << *iter; if ((*iter).notNull()) |